如何在 typeahead Angular JS 中显示更多细节?

How to show more details in typeahead Angular JS?

我在 Angular 中使用 Bootstrap 中的目录 typeahead。 如何在 HTML 模板中显示更多结果?现在我只得到 name:

typeahead="job as job.name for job in getJobPlace($viewValue) | filter:{name:$viewValue}"

我需要像这样的东西: 工作 job.name,照片 job.photo...

enter code here

您可以使用简单的字符串连接

typeahead="job as job.name +' '+ job.id for job in getJobPlace($viewValue) | filter:{name:$viewValue}"