0

我为标记目的实现了 jQuery 令牌输入,用户可以搜索标记或创建新标记,这要归功于 railscasts ep#382 & ep#258。数据来自tags.jsonurl,它是标签控制器的索引操作。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')
  });
});
4

1 回答 1

1

您提到的示例的来源如下:

 $(document).ready(function() {
     $("#demo-input-local-custom-formatters").tokenInput(
         [{
             "first_name": "Arthur",
             "last_name": "Godfrey",
             "email": "arthur_godfrey@nccu.edu",
             "url": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png"
         },
         {
             "first_name": "Adam",
             "last_name": "Johnson",
             "email": "wravo@yahoo.com",
             "url": "https://si0.twimg.com/sticky/default_profile_images/default_profile_2_normal.png"
         },
         ...

         ], 
         {
             propertyToSearch: "first_name",
             resultsFormatter: function(item){ ... },
             tokenFormatter: function(item) { ... }
         });
});

tokenInput似乎需要一个对象数组。使用 ajax 加载 json 后,只需将其传入并告诉它要搜索的字段以及一些回调来格式化结果。

于 2013-06-24T00:55:51.817 回答