「チェック」ボタンをクリックしたときにレールサーバーにリクエストを投稿する方法
レールルート
resources :sentences do
member do
get :check
end
end
レールセンテンスコントローラー
class SentencesController < ApplicationController
def check
render json: false
end
end
emberjs ルート
App.Router.map ->
@resource "sentences", ->
@resource "sentence",
path: ":sentence_id", ->
@route "check"
emberjs テンプレート
<script type="text/x-handlebars" id="sentence">
<button {{action 'check'}} class='btn'>Check</button>
</script>