是否可以在不使用常规 id、label、value 的情况下让 JQuery Autocomplete 工作?
例如,我不想使用:
[ { "id": "Botaurus stellaris", "label": "Great Bittern", "value": "Great Bittern" },
{ "id": "Asio flammeus", "label": "Short-eared Owl", "value": "Short-eared Owl" }]
反而:
[ { "my_id": "Botaurus stellaris", "first_name": "Great Bittern", "last_name": "Great Bittern" },
{ "my_id": "Asio flammeus", "first_name": "Short-eared Owl", "last_name": "Short-eared Owl" }]
就像,JQuery autocomplete
通常需要什么id,value,label
,我可以让它接受my_id, first_name, last_name
并使 Jquery Autocomplete 像对待一样id,label,value
吗?
当我不想修改来自数据源的数据键以将其显示在 JQuery 自动完成上时,这可能很有用。