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