var that = this;
var todo= new AV.Query('todo');
if (true) {
todo.equalTo('dressId', dressid);
todo.equalTo('meid', meid);
}
todo.descending('createdAt').find().then(function (results) {
var json = JSON.stringify(results)
console.log('>>>sssssss>>' + json)
that.setData({
seeInfo: results
});
}, function (error) {
});
请问为什么 console.log('>>>sssssss>>' + json)
只能打印出 todo 对象部分的信息,有的字段没打印出来