例如,假设您有一个 .json 文件"father": {"name":"Bob"}
和一个 javascript 文件,该文件从中获取数据并将其存储在一个名为family的数组中。
{{family.father.name}}
然后会在 html 页面上打印出父亲的名字。
是否可以执行以下操作:
在 javascript 文件中:
$scope.member = "father";
在 index.html 中:
{{family.{{member}}.name}}
// Is there some way to replace father with a variable
// from the javascript file? Just curious.