Rails の Ruby のメソッドからシステムコールを行う必要がありますが、同じページに留まりたいです。現在、何らかの理由で実行されませんが、次のように表示されます。
Routing Error
No route matches [POST] "/devices/22918"
Try running rake routes for more information on available routes.
これはボタンです:
<%= link_to image_tag("/images/glossy_green_button.png"), device , :method => :turnon, :confirm => "Are you sure?" %>
これは方法です:
def turnon
@device = Device.find(params[:id])
result = `/perl/toggle.pl @device.infodot on`
end
私が間違っていることを教えてください、
ありがとうございました
D