摘要: A、B小程序必须是在同一个公众号下有关联才能跳转成功 从A跳到B: <navigator target="miniProgram" open-type="navigate" app-id="B小程序的appid" path="要去到B小程序的页面例如:/pages/index/index" extr 阅读全文
posted @ 2018-10-10 16:48 沫沫w 阅读(2048) 评论(0) 推荐(0)
摘要: mongodb中的待特殊字符的模糊查询需要转义下才能查到 (name: /wo*2hjf/ 查不到 name: /wo\*2hjf/ 查得到 ) let str=wo*2hjf; let filter1={ name: new RegExp(str) }; let filter2={ name: n 阅读全文
posted @ 2018-10-10 15:34 沫沫w 阅读(4636) 评论(0) 推荐(0)