从ROR控制器ruby调用javascript函数

时间:2011-12-09 19:54:48

标签: javascript ruby-on-rails select populate optgroup

我有一个用javascript编写的函数,我想在我的ruby on rails controller(.rb)上调用(使用)。该函数使用optgroup

动态创建和填充选择

我如何将其转换为Ruby代码?我的问题是找到像document.createElement("optgroup");

这样的东西的替代品

这是javascript代码:

enter function nbFct() {
var clipLists = ["Default", "Recent", "Sticky lists"];
var option1 = ["a", "b"];
var option2 = ["a", "x", "c"];
var option3 = ["f", "e", "c", "d"];
var listType = [];
var optionType = [];
for (var i = 0; i < clipLists.length; i++) {
// create dynamic optgroup from clipLists
listType[i] = document.createElement("optgroup");
listType[i].label = clipLists[i];   
//  alert(listType[i].label) ;
if(listType[i].label ==  "Default"){
    for (var j = 0; j < option3.length; j++) {
// create options and attach to optgroups
    optionType[j] = document.createElement("option");
    optionType[j].value = option3[j];
//      alert(optionType[j].value) ;
    optionType[j].appendChild(document.createTextNode(option3[j]));
    listType[i].appendChild(optionType[j]); 
    }
}
else if(listType[i].label ==  "Recent"){
    for (var j = 0; j < option2.length; j++) {
// create options and attach to optgroups
    optionType[j] = document.createElement("option");
    optionType[j].value = option2[j];
//      alert(optionType[j].value) ;
    optionType[j].appendChild(document.createTextNode(option2[j]));
    listType[i].appendChild(optionType[j]); 
    }
   }
   else{
      for (var j = 0; j < option1.length; j++) {
  // create options and attach to optgroups
        optionType[j] = document.createElement("option");
        optionType[j].value = option1[j];
  //            alert(optionType[j].value) ;
        optionType[j].appendChild(document.createTextNode(option1[j]));
        listType[i].appendChild(optionType[j]); 
      }
    }
  }
 // set the default
 optionType[1].selected = true;
 // clear select menu and append optgroups
 var selectMenu = document.getElementById("clipListOption");
while (selectMenu.hasChildNodes()) {
selectMenu.removeChild(selectMenu.firstChild);
}
 for (var i = 0; i < clipLists.length; i++) {
    if (listType[i].hasChildNodes()) { selectMenu.appendChild(listType[i]); }
  }
} 

1 个答案:

答案 0 :(得分:0)

你不能轻易做到这一点,除非通过一些特别折磨的黑客行为。在Rails中,控制器无法在视图内部看到。即使它可以,它也无法从中提取Javascript并以某种方式在其自己的本地绑定上下文中运行它。即使它可以,你也不会想要,因为这是对 MVC 模式的严重违反。

如果您绝对想要这样做,可能会涉及以下各项的组合:

  • 从客户端POST POST包含JS函数的字符串。

  • 评估并解析JS。

  • 将JS转换为Ruby字符串。

  • 在控制器的本地环境中评估Ruby字符串。

这是很多工作。相反,模型应该在这里进行繁重的工作,并依靠控制器给它指令,然后将其输出传递给视图。