gpt4 book ai didi

javascript - Rails Json 包含自定义值

转载 作者:行者123 更新时间:2023-11-29 22:31:15 25 4
gpt4 key购买 nike

我目前正在开发一个使用 handlebars.js 模板的系统。它在大多数情况下都有效,但问题是我们向它传递了一个实际上并不存在的属性。

最初我设置它是为了让模型通过一个方法传递字符串。另一位同事指出,它有一股难闻的气味,因为该函数只是返回一个固定的字符串文字,并没有真正执行任何逻辑。(我是 Rails 的新手)。但是,我无法弄清楚如何以其他方式做到这一点。

我们最终设法通过 View 将其附加到 json,这导致属性基本上被嵌套。

问题是,当您尝试将另一个表单模板添加到页面时,以这种方式操作 handlebars 现在会失败,因为该字符串未嵌套在数据中。我可以将它嵌套在数据中,但我必须创建模板的副本,因为它在两个地方使用。我还必须复制 javascript。

我的问题是,与“rails 方式”保持一致,简化事情并返回到仅传递固定字符串的模型会有多糟糕?这不是一个优雅的解决方案,但它在代码方面绝对更简单。

下面是一些示例代码:

<% fields_for :thing do |f| %>
<fieldset>
<div>
<div>
<input type="hidden" id="special_report_{{../type}}_attributes_{{sequence}}_id" name="special_report[{{../type}}_attributes][{{sequence}}][id]" value="{{id}}"/>
<input type="hidden" id="special_report_{{../type}}_attributes_{{sequence}}__destroy" name="special_report[{{../type}}_attributes][{{sequence}}][_destroy]" class="remove_flag" value="{{id}}"/>
<%= remove_child_link "remove", f %>
</div>
<p>
<span>Title: </span><br/>
<input type="text" id="special_report_{{../type}}_attributes_{{sequence}}_title" name="special_report[{{../type}}_attributes][{{sequence}}][title]" size="30" value="{{title}}"/>
</p>
<p>
<span>Date: </span><br />
<input id="special_report_{{../type}}_attributes_{{sequence}}_event_date" name="special_report[{{../type}}_attributes][{{sequence}}][event_date]" size="30" type="text" value="{{event_date}}"/>
</p>
<p>
<br />
<div>
<textarea id="special_report_{{../type}}_attributes_{{sequence}}_content" name="special_report[{{../type}}_attributes][{{sequence}}][content]">{{content}}</textarea>
</div>
</p>
</div>
</fieldset>
<% end %>

{{ 表示 Handlebars 变量。这是查看代码

<script>
var updates_data = {update_content: $j.parseJSON('<%= @update_json %>'),"type":"updates"}
var highlights_data = { highlight_content: $j.parseJSON('<%= @highlight_json %>'),"type":"highlights"}
</script>

<% form_for( @foo) do |f| %>
<div>
<div>
<b>Updates:</b>
<p>
<%= add_child_link "Add update", :updates %> #custom wrapper for a link to the template
</p>
<div>
<script id="updates-template" type="text/x-handlebars-template">
{{#each update_content}}
<%= new_child_fields_template(f, :updates)%>
{{/each}}
</script>
<script id="update-template" type="text/x-handlebars-template">
<%= new_child_fields_template(f, :updates)%>
</script>
</div>
</div>
<div>
<b>Highlights:</b>
<p><%= add_child_link "Add highlight", :highlights %></p>
<div id="highlights">
<script id="highlights-template" type="text/x-handlebars-template">
{{#each highlight_content}}
<%= new_child_fields_template(f, :highlights)%>
{{/each}}
</script>
</div>
</div>
</div>
<% end %>

模型中的方法很简单

def type
"update"
end

我们从两个模型中提取一个更新和一个亮点,它们都使用相同的表单模板。

我问这个问题是因为这两种技术对我来说都很新,我不确定哪种方法最好。提前致谢。

编辑或 TLDR

本质上,我是在问,是将某些内容推送到 View 更好,还是采用如下方法:

def type
"update"
end

这么糟糕的情况?

最佳答案

如果它们是两个不同的类(UpdateHighlight),您可以在模板中访问 model.class.name不知何故。 Ruby/Rails 提供了一些内省(introspection)功能,允许您获取类的名称。

获得该名称后,您可以通过帮助程序或将其复数/大写的名称来运行它。这会有帮助吗?

此外,如果您的表单基于模型,而不是将 JSON 数据发送到表单部分并使用 handlebars.js,您始终可以通过使用引用表单基于的模型f.model.….

关于javascript - Rails Json 包含自定义值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6847792/

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