我有一个“深”的 json 结果,我必须在 AngularJS 部分中显示。
我想显示“人”节点的一些属性。我只有一个结果,只有一个人。实际上,这就是我正在做的事情:
Name : {{country.state.town.city.street.houseNumber.person.name}}
FirstName : {{country.state.town.city.street.houseNumber.person.firstName}}
dob : {{country.state.town.city.street.houseNumber.person.dob}}
Phone : {{country.state.town.city.street.houseNumber.person.Phone}}
我想做的是:
var person = country.state.town.city.street.houseNumber.person
Name : {{person.name}}
FirstName : {{person.firstName}}
dob : {{person.dob}}
Phone : {{person.Phone}}
因为部分是带有一些 ng* 元素的 html 文件,我不想在这个文件中破解 JS,我怎么能“创建”一个局部变量?