通过过滤对象的queryRecord在ember js中不起作用

时间:2017-04-10 11:04:04

标签: javascript ember.js pouchdb nosql

self.store.query('user-notif', {
  filter: {
    title: 'Concern',
    n_type: {
      $type: 'disease',
      $name: user.get('tag').prediction[pred_loc].dis
    },
    uid: email
  }
}).then(function(notif) {
  notif.set('notif_message', 'At this age, the probability of you getting ' + user.get('tag').prediction[pred_loc].dis + ' is ' + user.get('tag').prediction[pred_loc].prob);
  notif.save().then(function() {
    console.log('saved');
  });
});

但是查询过滤器没有出现我收到的错误是:

  

疾病不支持作为一种类型。请使用对象之一,字符串,   数组,数字,布尔值或空。

0 个答案:

没有答案