在我的Sails.js中,我有一个名为Invoices.js的模型,其结构如下:
module.exports = { tableName:'invoices',adapter: 'MysqL',autoPK:false,autoCreatedAt: true,autoUpdatedAt: true,attributes: { id: {type: 'integer',autoIncrement: true,primaryKey: true},doc_mod: {type:'string'},doc_n: {type:'integer'},createdAt: {type:'date'},updatedAt: {type:'date'},settled: {type:'integer'},invoice_line: {collection:'invoice_lines',via:'invoice'},customer: {model:'customers'},booking:{collection:'bookings',via:'invoice'} } }
我想从Angular.js查询通过’姓名’或’姓氏’找到客户,在客户端我想出了这个:
.factory('PaymentsService',['$resource',function($resource){ return{ Query:function(cursor,sorting,name,surname){ var allPayments = $resource('http://localhost:1337/invoices'); return allPayments.query({populate:{'customers':{where:{or:[{name:{contains:name}},{surname:{contains:surname}}]}}},skip:cursor,limit:100,sort:sorting}).$promise; } }
它似乎不能正常工作我总是得到这个不完整和正确的结果:
.....{ "customer": 1,"id": 4,"doc_mod": "receipt","doc_n": 3,"createdAt": "2015-05-11T17:07:40.000Z","updatedAt": "2015-05-11T17:07:40.000Z","settled": 0 },{ "customer": 1,"id": 5,"doc_n": 4,"createdAt": "2015-05-11T18:26:55.000Z","updatedAt": "2015-05-11T18:26:55.000Z","settled": 0 }.....