我正在使用 Angular UI - Bootstrap,特别是 Typeahead 指令。http://angular-ui.github.io/bootstrap/#/typeahead
我正在尝试使用“typeahead-template-url”为我的建议框创建自定义 html 模板。在尝试了多种技术但均未成功后,我发现故意弄乱我的引号“解决了”显示问题。我很想了解为什么会出现这种情况并让它正常工作。
例如:这有效
<table class="> <!--see class quote error -->
<tr>
<td>
<div ng-mouseenter="selectActive($index)" ng-click="selectMatch($index)">
<a>ID{{ match.model.id }} - {{ match.model.text }}</a>
</div>
</td>
</tr>
</table>
这不起作用
<table class="">
<tr>
<td>
<div ng-mouseenter="selectActive($index)" ng-click="selectMatch($index)">
<a>ID{{ match.model.id }} - {{ match.model.text }}</a>
</div>
</td>
</tr>
</table>
FIDDLE 在这里:http: //jsfiddle.net/nicktest222/JXtaZ/24/
此外,当您在结果列表中选择一个项目时,它会返回整个对象。如何让它返回对象中的特定属性?
任何帮助将不胜感激。
谢谢