scaffold によって生成されたコードは次のとおりです。
# DELETE /swimming/classtimes/1
# DELETE /swimming/classtimes/1.json
def destroy
@swimming_classtime = Swimming::Classtime.find(params[:id])
@swimming_classtime.destroy
respond_to do |format|
format.html { redirect_to swimming_classtimes_url }
format.json { head :no_content }
end
end
この html コードは、html 形式のリクエストを送信します
<a href="/swimming/classtimes/42" data-confirm="Are you sure?" data-method="delete" rel="nofollow">Destroy</a>
またはレールコード
<%= link_to 'Destroy', swimming_classschedule, :method =>:delete, data: { confirm: 'Are you sure?' }%>
アクションにjson形式を返すように指示する方法は?