0

看到我的指令中有这样的模板

templete = 
    '<div ng-repeat="contact in contacts">'+
      '<a href="www.localhost:3000#/?email=contact.email&phone=contact.phoneno">{{contact.email}}</a>'+
    '</div>'

联系人是这样的数组

contacts[
 {email:a457@yahoo.com,
 phoneno:8976555},
 {email:a4ded57@yahoo.com,
 phoneno:89656562}
]

但我没有在查询字符串中获取联系人数组的值。

如何在查询字符串中获取该值。

4

1 回答 1

0

您的模板可能应该是:

template = 
    '<div ng-repeat="contact in contacts">'+
        '<a href="www.localhost:3000#/?email={{contact.email}}&phone={{contact.phoneno}}">{{contact.email}}</a>'+
    '</div>'
于 2013-10-24T09:42:11.687 回答