我在途中:
import Ember from 'ember';
export default Ember.Route.extend({
model(params) {
let city = params.city_name;
let cuc = this.store.query('city', {
linkname: city,
});
let itm = this.store.query('product', {
uriName: params.item_name,
});
let dictpage = {
currentCity: cuc,
currentProduct: itm,
};
return dictpage;
},
});
我需要从cuc获取属性categoryId,但是当我写在那里时:
fot(let i in itm){
console.log(i.id);
}
不行。怎么做?
我需要从好项目中找到类别。
提前感谢您的回答!
答案 0 :(得分:0)
我做到了!这段代码,我需要的是:
this.store.query('product', {
uriName: params.item_name
}).then(function(items) {
items.forEach(function(item) {
console.log(item.get('categoryId'));
});
});