admin管理员组文章数量:1344238
I'm trying to setup custom template with Typeahead.js
My code is:
var countries = new Bloodhound({
datumTokenizer: function(d) {
return Bloodhound.tokenizers.whitespace(d.value);
},queryTokenizer: Bloodhound.tokenizers.whitespace,
limit: 100,
remote: {
url: '.php?action=countries&q=%QUERY'
}
});
countries.initialize();
$('.lang').typeahead(null, {
name: 'countries',
source: countries.ttAdapter(),
template: [
'<p class="lang-id">{{lang_id}}</p>',
'<p class="value">{{value}}</p>'
].join(''),
engine: Hogan
});
It works fine, but the template setting is ignored - I still get default dropdown. What am I doing wrong?
EDIT: I also tried:
$('input').typeahead(null, {
name: 'countries',
displayKey: 'value',
source: countries.ttAdapter(),
templates: {
empty: [
'<div class="empty-message">',
'no results found',
'</div>'
].join('\n'),
suggestion: '<p><strong>{{value}}</strong> – {{id}}</p>'
},
engine: Hogan
});
which throws an error:
Property 'suggestion' of object #<Object> is not a function
I'm trying to setup custom template with Typeahead.js
My code is:
var countries = new Bloodhound({
datumTokenizer: function(d) {
return Bloodhound.tokenizers.whitespace(d.value);
},queryTokenizer: Bloodhound.tokenizers.whitespace,
limit: 100,
remote: {
url: 'http://www.domain./json.php?action=countries&q=%QUERY'
}
});
countries.initialize();
$('.lang').typeahead(null, {
name: 'countries',
source: countries.ttAdapter(),
template: [
'<p class="lang-id">{{lang_id}}</p>',
'<p class="value">{{value}}</p>'
].join(''),
engine: Hogan
});
It works fine, but the template setting is ignored - I still get default dropdown. What am I doing wrong?
EDIT: I also tried:
$('input').typeahead(null, {
name: 'countries',
displayKey: 'value',
source: countries.ttAdapter(),
templates: {
empty: [
'<div class="empty-message">',
'no results found',
'</div>'
].join('\n'),
suggestion: '<p><strong>{{value}}</strong> – {{id}}</p>'
},
engine: Hogan
});
which throws an error:
Property 'suggestion' of object #<Object> is not a function
1 Answer
Reset to default 11Looking at the documentation, you can see that the name is templates
and not template
- like in you show in your second example. The issue you have there is that suggestion
needs to be a function, not a string. In the bottom example of custom templates you can see they use Handlebars.pile
which returns a function which takes a single parameter containing the data to render a template with - and returns a string that is the generated HTML. If you do not want to use Handlebars
you could do something like (please note that for simplicity I do not escape the data in my example. For a proper solution you should escape data.value
and data.id
to make sure you do not introduce XSS vulnerabilities):
$('input').typeahead(null, {
name: 'countries',
displayKey: 'value',
source: countries.ttAdapter(),
templates: {
empty: [
'<div class="empty-message">',
'no results found',
'</div>'
].join('\n'),
suggestion: function(data){
return '<p><strong>' + data.value + '</strong> - ' + data.id + '</p>';
}
},
engine: Hogan
});
本文标签: javascriptTypeaheadjstemplate settings ignoredStack Overflow
版权声明:本文标题:javascript - Typeahead.js - template settings ignored - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743739701a2530661.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论