如何在html angularjs表达式中使用eval?

时间:2016-12-20 12:38:34

标签: html angularjs

我有一个数组

$scope.arr = [
  {
   description : 'state'
  },
  {
   description : 'country'
  }
]
$scope.state=['a','b'] 
$scope.country=['1','2'] 

我在指令

中重复这个问题
<div ng-repeat="data in arr">
 <dynamic-directive resonse="data.description"></dynamic-directive>

这里“data.description”是第一个循环中的$ scop.state,我想发送$ scope.state = ['a','b']但我发送字符串“state”

0 个答案:

没有答案