我使用sailsjs作为框架,我想将这个json响应保存到我的mongo db中。 https://gist.github.com/FiatPax/b531d9cfd38f2615c580fe8ef26a4fa0
我收到此错误
MongoError:正则表达式太长
我用来保存的代码是
var str = JSON.stringify(response.body)
ItemPrices.findOrCreate({ appid: 440, itemprices: str }).exec(function createFindCB(error, createdOrFoundRecords) {
console.log(createdOrFoundRecords);
console.log(error);
});
如果您想知道findOrCreate的作用:https://github.com/balderdashy/waterline/blob/master/lib/waterline/query/composite.js#L24
如何从收到的回复中保存mongo db中的这么长的数据?