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');
});
});
但是查询过滤器没有出现我收到的错误是:
疾病不支持作为一种类型。请使用对象之一,字符串, 数组,数字,布尔值或空。