分类: 程序开发

254 篇文章

thumbnail
MongoDB配置账户密码连接报Authentication failed.
当我们MongoDB启用auth认证的时候,程序连接数据库时报 MongoServerError: Authentication failed. 但是呢,url、数据库名称、账号、密码都正确,为什么会报这个认证错误呢? 首先去服务器查看MongoDB的日志,日志显示: UserNotFound: Could not find user xxx@ad…
thumbnail
Vue项目导入导出csv文件
导出 安装vue插件papaparse yarn add papaparse 插件使用 首先,导出的数据一定得是一个列表,一个对象列表,例如: itemList: [ { name: '红木', type: 'P000001', price: '¥88888' }, { name: '水杉', type: 'P000002', price:…