我使用了以下脚本:
<input class="typeahead" type="text" id = "input">
$('#input').typeahead([{name: 'name',remote: 'planets.json',}]);
JSON文件
{"name" : {"value" : ["4729", "Siva", "Prakash"]},"planets" : {"value" : ["Mercury", "Venus", "Pluto"]}}
在输入框上输入时,显示两个Json数组名称值[名称,植物]。无论如何,在我的代码中,我只提到名称作为“名称”。所以它必须只从'name' JSON 数组中返回该值?