Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Rails 中,我可以通过用户一键将表单中的信息发送到外部 URL 并发布到我自己的服务器上吗?
在控制器的创建或更新操作中,保存操作之后:
require 'net/http' Net::HTTP.get('www.example.com', '/index.html?'+params)
您必须自己做,最好是在您完成程序后触发外部请求,希望使用消息队列。