2019年1月15日

摘要: 1.使用bind 也可以这么写: 在constructor里把bind赋值给方法 2.使用箭头函数 也可以这么写 阅读全文

posted @ 2019-01-15 21:58 猫头唔食鱼 阅读(578) 评论(0) 推荐(0) 编辑

摘要: react组件父传子,子组件使用父组件的数据,用props 阅读全文

posted @ 2019-01-15 15:46 猫头唔食鱼 阅读(263) 评论(0) 推荐(0) 编辑

2019年1月14日

摘要: update方法 modelName.update({需要替换的内容},{“$set”:{新的内容}},function(err,doc){}); 阅读全文

posted @ 2019-01-14 14:41 猫头唔食鱼 阅读(458) 评论(0) 推荐(0) 编辑

摘要: 使用remove()删除数据 remove({},function(err,doc){}) // 删除所有数据 remove({age:18},function(err,doc){}); //删除指定条件的数据 阅读全文

posted @ 2019-01-14 06:18 猫头唔食鱼 阅读(574) 评论(0) 推荐(0) 编辑

摘要: 1.创建Schema 2.创建model 3.在app.get()中调用查找方法find() 查找指定数据: 阅读全文

posted @ 2019-01-14 00:38 猫头唔食鱼 阅读(847) 评论(0) 推荐(0) 编辑

2019年1月13日

摘要: 1.安装 express npm i express --save 2.安装 mongoDB npm i mongodb --save 3.安装mongoose npm i mongoose --save 4.server.js中创建schema,shcema相当于sql的表,里面含有字段,可以定义 阅读全文

posted @ 2019-01-13 04:40 猫头唔食鱼 阅读(435) 评论(0) 推荐(0) 编辑

摘要: 端口报错 listen eaddrinuse:::xxx 表示这个端口被占用 结束正在使用此端的程序即可。 阅读全文

posted @ 2019-01-13 03:18 猫头唔食鱼 阅读(166) 评论(0) 推荐(0) 编辑

摘要: 报这个错,执行下面的命令,然后重新创建项目就可以。 npm cache clean --force 阅读全文

posted @ 2019-01-13 02:12 猫头唔食鱼 阅读(180) 评论(0) 推荐(0) 编辑

2019年1月3日

摘要: 1.安装mongoDB 官网下载安装: https://www.mongodb.com/download-center/community 安装时选择自定义设置,安装到C盘program Files文件夹下即可 2.配置MongoDB 【这个是在网上照抄的,可以用】 a.在c:\MongoDB(可随 阅读全文

posted @ 2019-01-03 23:34 猫头唔食鱼 阅读(250) 评论(0) 推荐(0) 编辑

摘要: 在react 或者 vue项目中使用express框架 1.创建vue或者 react 项目 2.在项目中创建server文件夹,创建server.js 3.运行node server.js 访问localhost:9093 可以看到内容 test 访问localhost:9093/data 可以看 阅读全文

posted @ 2019-01-03 16:23 猫头唔食鱼 阅读(970) 评论(0) 推荐(0) 编辑