+-
URL1请求出一组list用ms-for遍历list,每个list里面有一个参数URL2。再调用这个URL2进行一个新的请求。
html代码
<a class="icon_size col-sm-1" ms-for="el in @topmemu">
<p>
<span class="icon_style">
<span class="label label-warning pull-right tips">{{??}}</span>
<img class="icon_style_img" ms-attr="{src:el.sysBigIcon}" />
</span>
<span class="fontsize_icon">{{el.memuName}}</span>
</p>
</a>
我想要的是在问号的地方展示显示我TASK()弹出的值,我应该怎么表达才能出现相对应的值??
js代码
gettopmemu:function(){
$.ajax({
url: 'http://xxx/frame/portalMenu/getPortalSystem',
type: "POST",
data: {},
dataType: 'json',
timeout: 9000,
success: function(data) {
model.topmemu = data;
},
error: function(xhr, errorType, error) {
alert(JSON.stringify(error));
}
});
},//上面的系统分类
task:function(j){
//alert(j);
$.ajax({
url: j+'/services/getTaskCount',
type: "POST",
data: {},
dataType: 'json',
timeout: 9000,
success: function(data) {
alert(JSON.stringify(data.taskCount));
},
error: function(xhr, errorType, error) {
//alert(JSON.stringify(error));
}
});
}
})
下面是 我的疑问