ExecJS::ProgramError: SyntaxError: 保留字“function"

在我们的 rails rfq.js.coffee 中,我们只有一个简单的 js 代码:

In our rails rfq.js.coffee, we only have a simple js code:

$(function() {
  $('#need_report').change(function(){
    if ($(this).val() == true) {
      $('#report_language').hide();
    }  // end if
  });  // end change()
});  // end ready(function)

但是,此代码会导致错误,指出第一行中的 function() 是保留字.由于第一行基本上是一个 jquery $(document).ready(function () {}),我们不知道为什么会出现这个错误.有什么想法吗?非常感谢.

However this code causes an error saying that function() in first line is a reserved word. Since the first line is basically a jquery $(document).ready(function () {}), we have no clue why this error shows up. Any thoughts about it? Thanks so much.

推荐答案

你不能在 Coffeescript 文件中使用标准的 JS.将文件重命名为 rfq.js,或将其转换为 coffeescript:

You can't use standard JS like that in a Coffeescript file. Either rename the file to rfq.js, or convert it to coffeescript:

$ ->
  $('#need_report').change ->
    if $(this).val()
      $('#report_language').hide()

相关文章