一个系统上的控制器希望将数据发送到另一系统上的控制器
我在一个系统上有一个 Ruby on Rails 应用程序(带有 ipaddress ip_a ),并且在另一个系统上运行相同的代码(带有 ipaddress ip_b )
因此,两者都有一个名为 Grid
的模型,
我希望更新 Grid
模型和 ip_b Grid
模型的信息。
我怎样才能做到这一点?
我尝试使用 ActiveRecord 的建立连接直接更新 Grid 模型。 我想知道是否可以通过 post 将对象从 ip_a 的控制器发送到 ip_b 的控制器。
任何人都知道如何解决这个问题 ?
I have a ruby on rails app on one system ( with ipaddress ip_a ) and the same code running on another system ( with ipaddress ip_b )
Thus, both have a model called Grid
I wish to update the Grid
model of ip_a with ip_b Grid
Model's information.
How can I achieve this ?
I have tried directly updating the Grid
models using establish connection of ActiveRecord.
I am wondering if i can send a object from the controller of ip_a to the controller of ip_b through post.
Anyone know how to go about this
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定这是最好的解决方案,但您可以使用 JSON< /a> 为此。
例如:
grids_controller.rb
和您的index.html.erb 您只需在@grids 列表中创建一个同步操作的链接,该链接可能是远程的。
当然,您需要重构它,并且可能需要更改一些东西,但我认为这是一个开始。
I'm not sure it's best solution, but you can use JSON for that.
So for example:
grids_controller.rb
and in your index.html.erb you just create a link to sync action in @grids listing which could be remote.
Of course you'll need to refactor that, and probably change few things, but i think it's a start.