0

私の index.html.erb には、次のようなボタンがあります。

<%= button_to 'Test', question_path, :remote => true, :class => "btn btn-primary btn-large" %>

これにより、サーバーに単純な文字列値を要求するコントローラーのメソッドがトリガーされ、メソッドは正常に応答を返します。これは によって確認されましたputs question.gets

その答えを index.html.erb に戻し、<div>.

4

1 に答える 1

1

を作成し、app/views/questions/show.js.erbここに必要なjsコードを追加します。

# controller
def show
  @question = ... # fetch question
end

# show.js.erb
$('#div_id').text('<%= escape_javascript @question.gets %>');
于 2013-02-05T12:59:34.337 に答える