我在页面中有这个Javascript:
<script type='text/javascript'>
function update_price(order_id, quantity) {
$.ajax({
beforeSend: function(xhr) {
xhr.setRequestHeader(
'X-CSRF-Token', $('meta[name="csrf-token"]').attr('content'));
},
url: "/carts/" + <%= @cart.id %> + "/update_quantity", #you are missing 's' here is this a typo?
type: "POST",
data: {
"order_id" : order_id,
"quantity" : quantity }
});
}
</script>
它对用户来说很好用。匹配的路线如下所示:
resources :carts, only: %i[update destroy index] do
member do
match 'update_quantity', to: 'carts#update_quantity', via: %i[get post]
end
end
我的规格如下:
it 'updates the quantity' do
post "/cart/#{cart.id}/update_quantity", xhr: true, params: {
order_id: cart.orders.first.id,
quantity: 50
}
expect(response.status).to eq 200
end
但我一直收到这个错误:
ActionController::UrlGenerationError:
No route matches {:action=>"/cart/2/update_quantity", :controller=>"carts", :order_id=>1, :quantity=>50}
简而言之,它适用于用户,但我无法通过规范。我做错了什么?
答案 0 :(得分:7)
在rails 4 xhr规格中出现相同的错误。这种格式适合我:
xhr :post, :update_quantity, id: cart.id, order_id: cart.orders.first.id, quantity: 50
看起来你有rails 5应用程序,所以试试这个:
post :update_quantity, xhr: true, params: {
id: cart.id,
order_id: cart.orders.first.id,
quantity: 50
}
请注意,rails 5中不推荐使用xhr
方法,因此请使用选项xhr: true