我正在使用selected()来实现我的下拉框。
在我的主页中,我将下拉框设置为如下代码
//Code in home template
.bookmark_questions
%select
%option{value: "xxxx"} xxxxxx
%option{value: "xxxx"} xxxxxx
%option{value: "xxxx"} xxxxxx
%option{value: "xxxx"} xxxxxx
//Code in home view
render: ->
$(@el).html @template()
@$('select').chosen()
@
在我的主页视图中,我尝试通过“ @$('select').chosen()
”激活选择,但是当我尝试运行代码时,出现以下错误
this.search_field[0] 未定义
为我的案例激活选择的正确方法是什么?