如題
指令碼如下
app.directive("info",[function(){
return {
restrict:'AE',
scope:{},
templateUrl:'views/finance/info.html',
link:function($scope,element,attrs){
}
}
}])
html頁面代碼
這兩個指令渲染完成後資料會都變成id=id2的
請問是什麼原因
ringa_lee2017-05-15 17:07:11
id1,id2是資料的id,透過這個id去取資料;
我自己找到原因了,是因為form我用的id區分,views/finance/info.html中就有表單,使用多個相同指令時,id不唯一了;o(╯□╰)o
感謝樓上兩位的回答。