mongoose报错:(node:15689) DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead. 解决办法: //连接数据库 mongoose.set('useCreateIndex', true) //加上这个 mongoose.connect(db, { useNewUrlParser: true })…
参考:mongoose报错:DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead mongoose报错:(node:9716)DeprecationWarning: collection.ensureIndex is deprecated. Use createIndexes instead 解决方法: // 导入第三方模块mongoose const mongoose = requ…
Python提示AttributeError 或者DeprecationWarning: This module was deprecated解决方法 在使用Python的sklearn库时,发现sklearn的cross_validation不能使用,在pycharm上直接显示为被横线划掉. 运行程序: import sklearn ... X, Xt, y, yt = sklearn.cross_validation.train_test_split(X, y) 报错: AttributeE…
深入浅出Webpack 1-5 使用pulugin extract-text-webpack-plugin 提取css报错 DeprecationWarning: Tapable.plugin is deprecated. Use new API on `.hooks` instead/Users/liuyi/Projects/webpackdemo/node_modules/webpack/lib/Chunk.js:846 打开github项目地址 https://github.com/web…
DeprecationWarning: decodestring() is a deprecated alias since Python 3.1, use decodebytes()…
项目地址:https://github.com/caochangkui/demo/tree/koa-mongoose 连接数据库 数据库名字为:koa-mongoose const mongoose = require('mongoose') // 连接数据库,URL以mongodb:// + [用户名:密码@] +数据库地址[:端口] + 数据库名.(默认端口27017) // 连接mongodb数据库的链接解析器会在未来移除,要使用新的解析器,通过配置{ useNewUrlParser:tr…
前言介绍 Yapi 由 YMFE 开源,旨在为开发.产品.测试人员提供更优雅的接口管理服务,可以帮助开发者轻松创建.发布.维护 API. 项目地址:https://github.com/YMFE/yapi 官网:https://yapi.ymfe.org/,Yapi具有以下功能特性; 权限管理扁平化权限设计,即保证了大型企业级项目的管理,又保证了易用性 可视化接口管理基于 websocket 的多人协作接口编辑功能和类 postman 测试工具,让多人协作成倍提升开发效率 Mock Server…
初始化项目 npm init -y 先安装一波乱七八糟的依赖插件(需要具备一定的koa2知识,至于mongoDB自行百度安装教程),模板引擎我使用的是art-template(据说是性能最好的,而且是因为JQ时代的产物,念旧) npm i koa koa-router koa-bodyparser koa-static koa-views art-template koa-art-template mongoose -S 安装nodemon实时监听修改 npm i nodemon -D 新建ap…
前言 node.js的出现,使得用前端语法(javascript)开发后台服务成为可能,越来越多的前端因此因此接触后端,甚至转向全栈发展.后端开发少不了数据库的操作.MongoDB是一个基于分布式文件存储的开源数据库系统.本文为大家详细介绍了如何用node.js + mongoose 玩转MongoDB.希望能帮到有需要的人. 由于我用Mac开发,以下所有操作都是在Mac下进行. 一. 环境搭建 安装Node.js 有 node 环境的可以跳过. nodejs官网提供了 macOS 安装包,直接…