gpt4 book ai didi

javascript - 带 ActionCable 的回形针

转载 作者:太空宇宙 更新时间:2023-11-04 15:34:51 25 4
gpt4 key购买 nike

有什么方法可以通过 ActionCable 传递文件吗?我正在尝试使用 Paperclip 进行上传。

  <div id="messaging-form" class="form-group">
<%= f.file_field :msg_image, id:"msg_image" %>
<%= f.submit "Send", id: "data-send" %>

我的 JavaScript 是

return $('#new_message').submit(function(e) {
e.preventDefault();
var $this
$this = $(this);
msg_image = $this.find('#msg_image');
App.global_chat.send_message(msg_image.val());
msg_image.val('');
return false;
}
});

//inside my App.cable.subscriptions.create
send_message: function(msg_image) {
return this.perform('send_message', {
msg_image: msg_image
});
}


//message_broadcast_job.rb
class MessageBroadcastJob < ApplicationJob
queue_as :default

def perform(data)
message = Message.create!(msg_image: data['msg_image'])
ActionCable.server.broadcast "conversations_#{message.conversation.id}_channel",
message: message
end

end

显然,仅通过 msg_image.val() 传递图像文件路径并不是正确的方法。我需要 Paperclip 正确保存文件所需的实际数据。

我能找到的最新信息是一年前的,说不可能通过 ActionCable 传递文件。但是,我想知道是否有任何更新,或者是否有人找到了好的破解方法。

最佳答案

我后来发现,虽然 Websockets 可以处理文件,但 Rails ActionCable 却不能。

关于javascript - 带 ActionCable 的回形针,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44476129/

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