computed:注意不能直接在photoList后面加参数,没效果(应该是vue不支持),应该以JavaScript闭包的形式:
computed: {
photoList() {
return function(value){
var imgList = [];
for(var i=0;i<value.length;i++){
imgList.push({src: value[i]});
}
return imgList;
}
}
}
调用
<div>{{photoList(item.photo)}}</div>