gpt4 book ai didi

ruby 轨道 : load different partial with radio buttons

转载 作者:数据小太阳 更新时间:2023-10-29 08:53:44 24 4
gpt4 key购买 nike

我想使用 ajax 将生成的内容的不同部分加载到表单中。

那么我该如何进行这项工作呢?

例如,我有一个带有单选按钮“fruits”和“vegetablles”的表单,所以当我选择其中一个时,相应的部分应该使用正确的内容直接动态加载到模板中。

它是一个用脚手架创建的简单表单(编辑、显示、销毁)正常应该是prototype吧?

最佳答案

你所做的就是:

在你的 Controller 中,你应该有以下方法:

def fruits
@myfruit = Fruit.new # what you want!
respond_to do |format|
format.js
end
end

然后,你应该有你的 fruit.js.erb 对应于那个 Action (假设你在这里有 jQuery):

$("#fruits-holder").replaceWith('<%= escape_javascript(render @myfruit) %>');

然后您需要一个分部 View ,如 _fruit.html.erb,其中包含您想要的 html

正如 Codeglot 所说,如果您想要更准确的答案,请发布有关您的问题的更多信息。我现在不能更具体。

关于 ruby 轨道 : load different partial with radio buttons,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6679933/

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