我为标记目的实现了 jQuery 令牌输入,用户可以搜索标记或创建新标记,这要归功于 railscasts ep#382 & ep#258。数据来自tags.json
url,它是标签控制器的索引操作。tags.json 中的数据如下所示:
[
{
"created_at":"2013-06-21T16:30:19Z",
"explanation":"hitting the hosel of the club",
"id":8,
"name":"shank",
"updated_at":"2013-06-21T16:30:19Z",
"updated_by":"andy"
},
{
"created_at":"2013-06-22T17:40:37Z",
"explanation":"hitting the ground before the ball",
"id":12,
"name":"chunk",
"updated_at":"2013-06-22T17:40:37Z",
"updated_by":"andy"
}
]
我的标签有一个名称和一个解释,所以我想将它们包括在结果列表中,比如这里的令牌和结果格式演示http://loopj.com/jquery-tokeninput/demo.html#formatting。
下面的代码(为简洁省略了条目数)来自 jQuery tokenInput Token and Results Formatting demo。
除了在此处手动输入“名称”:“Shank”以及其他省略的条目之外,我如何从 tags.json 哈希中提取名称和解释,并在与结果格式化程序行相同的情况下使用它们,例如 item.json 。名称和项目。解释?
标签.js
jQuery(function() {
var question = $('#question_tag_tokens')
return question.tokenInput([{
"name": "Shank",
"explanation": "hitting the hosel of the club"
}
], {
propertyToSearch: ["name"],
resultsFormatter: function(item){ return "<li>" + "<div class='tag' style='display:inline;color:#fff;'>" + item.name + "</div>" + " " + item.explanation + "</li>" },
prePopulate: question.data('preload')
});
});