gpt4 book ai didi

jquery - Rails, CoffeeScript 出现语法错误

转载 作者:行者123 更新时间:2023-12-03 22:30:04 25 4
gpt4 key购买 nike

我正在尝试使用jquery ui 库在rails 中执行自动完成功能。但是我不断收到语法错误“语法错误:保留字“函数”在线...”

这是我的 Lesson.js.coffee 文件

jQuery ->

$(function() {
function split( val ) {
return val.split( /,\s*/ );
}
function extractLast( term ) {
return split( term ).pop();
}

$( "#lesson_tag_name" )
// don't navigate away from the field on tab when selecting an item
.bind( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).data( "autocomplete" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
source: $('#lesson_tag_name').data('autocomplete-source')
},
search: function() {
// custom minLength
var term = extractLast( this.value );
if ( term.length < 2 ) {
return false;
}
},
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;
}
});
});

我在网上读到可以用 -> 替换单词 function 的地方我这样做了,我停止接收函数错误,但随后我收到其他语法错误,例如“语法错误:在线保留字“var”...”

我做错了什么吗?

最佳答案

只有第一行是coffeescript;剩下的就是普通的 JavaScript。

尝试使用此转换器:

http://js2coffee.org/

$(function() {}); 变为 $ ->

关于jquery - Rails, CoffeeScript 出现语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10188363/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com