这是我的表格..
div.form(name='customerFrm')
label.fa.fa-search.search-icon(data-ng-click= "customer(obj._id)", typeahead-match)
input.form-control.search(type='text', ng-model='selected', typeahead-on-select= "customerSearch()")
这是我用于Angular Bootstrap的插件..
第一档......
a(tabindex='-1', bind-html-unsafe='match.model.name | typeaheadHighlight:query', ng-href='account.html#!/abc/{{match.model._id}}')
这是第二个文件..
ul.dropdown-menu(aria-hidden='{{!isOpen()}}', role='listbox', style='display: block;',
ng-style='{top: position.top+"px", left: position.left+"px"}', ng-if='isOpen()')
li(role='option', ng-click='selectMatch($index)', ng-mouseenter='selectActive($index)',
ng-class='{active: isActive($index) }', ng-repeat='match in matches track by $index')
div(template-url='templateUrl', query='query', match='match', index='$index',
typeahead-match='')
使用第一个文件它返回我...
href="account.html#!/abc/
路径但没有它的ID。所以请给我一个解决方案,如何重定向到带有它ID的页面。