安装并设置cnpm的镜像
npm install -g cnpm --registry=https://registry.npm.taobao.org
CNPM工具
由于一些特殊的原因,某些情况下我们没办法很好的从 https://registry.npmjs.org下载下来一...
yekong
3年前 (2021-09-02)
喜欢
查看当前镜像
npm get registry
设置为淘宝镜像
npm config set registry https://registry.npm.taobao.org/
官方镜像
npm config set registry https://registry.n...
yekong
3年前 (2021-09-02)
喜欢
查看当前镜像
yarn config get registry
设置为淘宝镜像
yarn config set registry https://registry.npm.taobao.org/
设置为官方镜像
yarn config set registry https:/...
yekong
3年前 (2021-09-02)
喜欢
Yarn是什么?
...
yekong
3年前 (2021-09-02)
喜欢
Yarn是什么?
“Yarn是由Facebook、Google、Exponent 和 Tilde 联合推出了一个新的 JS 包管理工具 ,正如官方文档中写的,Yarn 是为了弥补 npm 的一些缺陷而出现的。”这句话让我想起了使用npm时的坑了:
npm install的时候慢。...
yekong
3年前 (2021-09-02)
喜欢
Unknown column 'record.updatedAt' in 'order clause'
在本次项目中的原因是我的表中的字段信息中创建时间的字段是update_time,因此,将model的MySQL语句中的updatedAt改成u...
yekong
3年前 (2021-08-06)
喜欢
order: [['update_time', 'DESC']],
const records = await Record.findAll({
where: {
uid: data.uid...
yekong
3年前 (2021-08-06)
喜欢
Warning in ./libraries/config/FormDisplay.php#661
"continue" targeting switch is equivalent to "break". Did you mean to...
yekong
3年前 (2021-08-06)
喜欢
这里获取config需要修改uview ui文件 添加一段代码用来获取config
response.config = options
这样就可以获取config了
{
"data": {
"code": 100...
yekong
3年前 (2021-08-06)
喜欢
<script>
import {
get_lists
} from '@/config/api.js'
export default {
data() {
retur...
yekong
3年前 (2021-08-05)
喜欢