0

我需要调用 rails helper 方法并将值作为数组获取,以便 javascript 可以处理它。是否可以在 javascript 中调用 rails helper。我正在尝试在我的应用程序中集成 jquerys 自动完成功能。请在下面找到代码。

$(document).ready(function () {
   //**Here the rails helper method will get the list of items**    

   function split(val) {
       return val.split(/,\s*/);
   }

   function extractLast(term) {
       return split(term).pop();
   }

   $("#tags")
   // don't navigate away from the field on tab when selecting an item
   .bind("keyup", function (event) {
       if (event.keyCode === $.ui.keyCode.TAB && $(this).data("autocomplete").menu.active) {
           event.preventDefault();
       }
   }).autocomplete({
       minLength: 0,
       source: function (request, response) {
           // delegate back to autocomplete, but extract the last term
           response($.ui.autocomplete.filter(
           availableTags, extractLast(request.term)));
       },
       focus: function () {
           // prevent value inserted on focus
           return false;
       },
       select: function (event, ui) {
           var terms = split(this.value);
           // remove the current input
           terms.pop();
           // add the selected item
           terms.push(ui.item.value);
           // add placeholder to get the comma-and-space at the end
           terms.push("");
           this.value = terms.join(", ");
           return false;
       }
   });
});
4

1 回答 1

0

我认为没有一种直接的方法可以在 JavaScript 文件中使用 Rails 助手。

但是,您可以通过将这些列表/数组放置在标记中的脚本标记中来使这些列表/数组对您的 JS 可用,或者将它们添加为稍后可由 JavaScript 获取的数据属性。另一种解决方案是按照评论使用Gon gem。

于 2012-09-17T11:42:46.043 回答