1
私は窓にレール3を使用しています。スカッフォールディングを使用して「パーティー」MVCを作成しましたが、何らかの理由でdestroyアクションが機能せず、代わりにshowページにリダイレクトされます。Windows上のレールは破棄します
ビュー:
<td><%= link_to 'Destroy', party, :confirm => 'Are you sure?', :method => :delete %></td>
コントローラー:
def destroy
@party = Party.find(params[:id])
@party.destroy
respond_to do |format|
format.html { redirect_to(parties_url) }
format.xml { head :ok }
end
end
何が間違っていますか?
は、それは今までの確認を表示していますか?どのブラウザを使用していますか? –