摘要:
nodejs连接mongodb插入数据时,发现mongoDB报错:db.collection is not a function。解决方法: 1.npm下载mongodb2.x.x版本替换3.x.x 2. MongoClient.connect回调函数里先选择一个数据库:var db=db.db(' 阅读全文
摘要:
最近一个人在捣鼓vue,写完项目后发现在npm run dev下可以正常访问,bulid之后却一片空白,查看console出现许多Failed to load resource: net::ERR_FILE_NOT_FOUND。恩,看了下网上评论找到了正确的方法 webpack.prod.conf. 阅读全文
摘要:
function GetQueryString(name) { var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); if(r!=null) 阅读全文