我正在使用物化框架进行个人项目,并按照文档我可以添加数据以自动填充我的表单字段。
在此表单中,用户将填写有关其车辆的数据。
$('input.autocomplete').autocomplete({
data: {
"Verde": null,
"Rojo": null,
"Azul": null,
"Honda": null,
"Toyota": null,
},
limit: 20, // The max amount of results that can be shown at once. Default: Infinity.
onAutocomplete: function(val) {
// Callback function when value is autcompleted.
},
minLength: 1, // The minimum length of the input for the autocomplete to start. Default: 1.
然而,在填写有关汽车品牌的数据时,自动完成功能会显示“rojo”。如何从特定字段中分离数据?
先谢谢了。