首先去flutter中国站获取镜像源:https://flutter.cn/community/china 下面是Flutter 社区的镜像源: export PUB_HOSTED_URL=https://pub.flutter-io.cn export FLUTTER_STORAGE_BASE_URL=https://storage.flutte…
当我们MongoDB启用auth认证的时候,程序连接数据库时报 MongoServerError: Authentication failed. 但是呢,url、数据库名称、账号、密码都正确,为什么会报这个认证错误呢? 首先去服务器查看MongoDB的日志,日志显示: UserNotFound: Could not find user xxx@ad…
1. 设置新版淘宝镜像 添加一个环境变量即可 vim ~/.bashrc 然后最后新增一行: export NVM_NODEJS_ORG_MIRROR=https://cdn.npmmirror.com/binaries/node 最后保存 :wq 使之生效 source ~/.bashrc 2. 设置默认node版本 nvm alias defa…
可以通过安装yarn,再用yarn全局安装npm解决。 安装yarn curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc…
npm config set registry https://registry.npmmirror.com yarn config set registry https://registry.npmmirror.com
解决方法: <td style="mso-number-format:'\@';">2105300716356709e1</td> 添加 style="mso-number-format:'\@'; 样式,转化为文本格式 其他格式: mso-number-format:"0"NO Decimalsmso-number-format:"0…
// main.ts import { createApp } from "vue"; import App from "./App.vue"; import store from "./store"; const app = createApp(App); useAnt(app); store.forEach(({ modelName, key …
ts版车辆VIN码的校验算法: /* * @Autor: Jason * @Date: 2020-12-30 14:36:48 * @LastEditors: Jason * @LastEditTime: 2020-12-30 14:42:54 * @FilePath: /src/utils/verify_vin.ts * @description…
toPinyin uniapp 文字汉字一键转拼音,转简写,转首字母 封装了下使用方法,原作者: lieft@qq.com https://ext.dcloud.net.cn/plugin?id=3294 github: https://github.com/hlbj105/toPinyin 1、引入js import toPinyin from …
导出 安装vue插件papaparse yarn add papaparse 插件使用 首先,导出的数据一定得是一个列表,一个对象列表,例如: itemList: [ { name: '红木', type: 'P000001', price: '¥88888' }, { name: '水杉', type: 'P000002', price:…
<input type="file" name="file" id="upload"> <script> const ACCEPT = ['image/jpg', 'image/png', 'image/jpeg'] const MAXSIZE = 3 * 1024 * 1024 const MAXSIZE_STR = '3MB…