上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 25 下一页
摘要: 最近遇到大坑,,最后解决了,直接上代码 npm intall iview main.js中引入 import iView from 'iview'; import 'iview/dist/styles/iview.css' <template> <center> <Row> <Col span="1 阅读全文
posted @ 2018-06-15 16:15 江山一族 阅读(402) 评论(0) 推荐(0) 编辑
摘要: await model.photo.update({ _id: { $in: photoIdsParam } }, { $pull: { customerIds: { code: custCode, $or: [{ 'userIds.0': { $exists: false } }, { 'user 阅读全文
posted @ 2018-06-13 09:38 江山一族 阅读(1369) 评论(0) 推荐(0) 编辑
摘要: 给数组去除重复值 Array.prototype.distinct = function() { var arr = this, result = [], i, j, len = arr.length; for (i = 0; i < len; i++) { for (j = i + 1; j < 阅读全文
posted @ 2018-06-12 23:03 江山一族 阅读(1560) 评论(0) 推荐(0) 编辑
摘要: await model.photo.update({ _id: { $in: photoIdsParam } }, { $addToSet: { customerIds: { code: custCode, isDel: 'true' } } }, { upsert: true }) 阅读全文
posted @ 2018-06-12 18:54 江山一族 阅读(441) 评论(0) 推荐(0) 编辑
摘要: const word = ctx.params.word userModel.find({"name":{$regex: eval(`/${word}/ig`)}}) 如果mongodb或者node版本低了,上面写法很可能不管用,可以采用下面两种写法 title:eval("/"+title+"/i 阅读全文
posted @ 2018-06-11 23:11 江山一族 阅读(1448) 评论(0) 推荐(0) 编辑
摘要: 1.查看应用是否在docker中部署成功 需要确认curl已安装 whereis curl sudo apt-get -y install curl curl localhost:8081 如果成功,会打印项目代码 2.没有容器,docker会自动下载 docker run -i -t ubuntu 阅读全文
posted @ 2018-06-11 18:49 江山一族 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 1.启动: systemctl start docker.service 2.停止: systemctl stop docker 3.从usts上拉取仓库 编辑文件 vi /etc/docker/daemon.json 若果没有则新建一个 在文件中添加{ "registry-mirros":["ht 阅读全文
posted @ 2018-06-09 16:12 江山一族 阅读(235) 评论(0) 推荐(0) 编辑
摘要: Date.prototype.Format = function (fmt) { //author: meizz var o = { "M+": this.getMonth() + 1, //月份 "d+": this.getDate(), //日 "h+": this.getHours(), // 阅读全文
posted @ 2018-06-08 13:47 江山一族 阅读(316) 评论(0) 推荐(0) 编辑
摘要: db.getCollection('photos').findOneAndUpdate("5b028e71f32bd5004f905879", //findByIdAndUpdate{ '$push':{ 'orderHistory':{ "userId":"5b10d49320b805a7844a 阅读全文
posted @ 2018-06-04 10:57 江山一族 阅读(1915) 评论(3) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2018-06-03 22:29 江山一族 阅读(200) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 25 下一页