看到我的指令中有这样的模板
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}
]
但我没有在查询字符串中获取联系人数组的值。
如何在查询字符串中获取该值。