ドロップダウンボックスを実装するために 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] は未定義です
私の場合に選択されたアクティブ化の正しい方法は何ですか?