gpt4 book ai didi

javascript - Capybara 重定向到 JSON 响应

转载 作者:行者123 更新时间:2023-12-03 08:42:58 24 4
gpt4 key购买 nike

我的 Rails 应用程序中有一个表单,可以将数据远程发送到 Controller 操作。然后 JavaScript 会等待成功的 AJAX 响应,然后更新页面的各个部分。

使用 Turnip、Rspec 和 Capybara 进行测试时,current_page 被重定向到 JSON 响应,而不是像我期望的那样停留在页面上。

下面是一些代码:

Controller Action 被击中

def update
@conversation.update(conversation_params)
@conversation.save
render json: @conversation, serializer: ConversationSerializer
end

表格

= simple_form_for(convo, remote: true, method: :json) do |f|
- f.fields_for :messages, Message.new(conversation: f.object) do |msg|
= msg.input :text, label: 'Message'
= msg.submit 'Post Message', id: 'message-submit'

Coffeescript 倾听成功

$(document).on 'ajax:success', 'form[data-remote]', (xhr, data, status) ->
new_message_id = data.conversation.conversation_messages.pop().id

$.get '/conversation_messages/'+new_message_id+'/partial', (data) ->
$('#conversation .message').last().after(data)

$(document).on 'ajax:success', 'a[data-remote]', (xhr, data, status) ->
location.reload()

$(document).on 'ajax:success', 'form[data-remote]', (xhr, data, status) ->
location.reload()

显示错误内容的测试

step 'I say :message' do |message|
fill_in 'Message', with: message
click_on 'Post Message'
end

step 'I see the conversation message :message from :username' do |message, username|
expect(page).to have_selector('.conversation-message-sender', text: username)
expect(page).to have_selector('.conversation-message-text', text: message)
end

最佳答案

您需要使用支持 JavaScript 的驱动程序才能使 ajax 提交正常工作 - 请参阅 https://github.com/jnicklas/capybara#drivers

关于javascript - Capybara 重定向到 JSON 响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33000826/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com