我有一个Meteor应用程序在移动浏览器上遇到问题。我使用自动完成程序包(meteor-autocomplete),但我无法选择使用触摸下拉的自动完成选项。单击选项时,它在桌面浏览器上工作正常。问题是什么?另外,我如何修改移动浏览器的应用程序(演示文稿等)。
由于
编辑: 这是html模板代码:
<template name="form">
{{> inputAutocomplete settings=settings id="food" class="form-control" name="food" placeholder="e.g. Chicken Pot Pie"}}
</template>
这里是Template.form.helpers:
Template.form.helpers({
settings: function() {
return {
position: "bottom",
limit: 5,
rules:
[
{
collection: Records,
field: 'food',
matchAll: true,
template: Template.foodFill
}
]
};
},
records: function() {
return Records.find().fetch();
}
});
记录集合包含自动填充使用的所有条目。