hogeモデルのcreate,updateにformからでなくlink_to、button_toからデータを投げる方法の覚書。 ルーティングのおさらい createはindexと同じhoges_path, method: post updateはhoge_path, method: put = link_to 'Create', hoges_path(hoge: {user_id: current_user.id, body: 'fuga'}), method: :post = button_to 'Create', hoges_path(hoge: {user_id: current_user.id, body: 'fuga'}) = link_to 'Update', hoge_path(@hoge), method: :put, params: { body: 'fuga' } =