私はこの例を経由して流星とselectizeを使用しています: onChangeイベントでそうmeteor is not working with selectize.jsselectize.jsを使って選択したIDとテキスト値を取得する方法。流星?
Template.hello.onRendered(function(){
$('#select-links').selectize({
maxItems: null,
valueField: 'id',
searchField: 'title',
options: [
{id: 1, title: 'DIY', url: 'https://diy.org'},
{id: 2, title: 'Google', url: 'http://google.com'},
{id: 3, title: 'Yahoo', url: 'http://yahoo.com'},
],
render: {
option: function(data, escape) {
return '<div class="option">' +
'<span class="title">' + escape(data.title) + '</span>' +
'<span class="url">' + escape(data.url) + '</span>' +
'</div>';
},
item: function(data, escape) {
return '<div class="item"><a href="' + escape(data.url) + '">' + escape(data.title) + '</a></div>';
}
},
create: function(input) {
return {
id: 0,
title: input,
url: '#'
};
}
});
});
<!-- html -->
<template name="hello">
<select id="select-links" placeholder="Pick some links..."></select>
</template>
を私はその値の
値とid
を取得したいですデータベースに保存します。だから私はそれをどのように行うことができます
{Google ID::1、テキスト}
結果は次のようなものだろうか?流星
ありがとうございます@hwillson それは私のために働く。 –