Rails 从实例变量中删除属性

发布于 2025-01-08 21:42:22 字数 272 浏览 0 评论 0原文

在我的控制器中,我有:

  def edit
    @konkurrencer = Konkurrencer.find(params[:id])
    @konkurrencer.attributes.map{|d| d.map{|d| d.dup.force_encoding("UTF-8") } }
  end

我想删除@konkurrencer的created_at和updated_at属性,因为我无法在时间格式上调用force_encoding。

In my controller I have:

  def edit
    @konkurrencer = Konkurrencer.find(params[:id])
    @konkurrencer.attributes.map{|d| d.map{|d| d.dup.force_encoding("UTF-8") } }
  end

I want to remove created_at and updated_at attributes for @konkurrencer because I cannot call force_encoding on a time format.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

花辞树 2025-01-15 21:42:22

您可能想要这个而不是删除这些属性:

@konkurrencer.attributes.map{|d| d.map{|d| d.dup.force_encoding("UTF-8") if d.respond_to?(:force_encoding) }

这还将跳过您拥有的不响应force_encoding的任何其他属性。不过,这会导致一大串零,所以我认为你正在做的事情不在这里......

You probably want this instead of removing those attributes:

@konkurrencer.attributes.map{|d| d.map{|d| d.dup.force_encoding("UTF-8") if d.respond_to?(:force_encoding) }

That will also skip any other attributes you have that don't respond to force_encoding. This results in a big string of nils, though, so I think something you're doing isn't right here...

懵少女 2025-01-15 21:42:22

您可以测试属性的类型,并且仅当它是字符串时才调用force_encoding。
尝试更改类似于的

d.dup.force_encoding("UTF-8")

部分

(d.is_a? String) ? d.dup.force_encoding('UTF-8') : d.dup

You can test the type of the attribute and call force_encoding only if it is a String.
Try to change the segment that is like

d.dup.force_encoding("UTF-8")

with

(d.is_a? String) ? d.dup.force_encoding('UTF-8') : d.dup
情丝乱 2025-01-15 21:42:22
@konkurrencer.attributes.except(:created_at, :updated_at).map{|d| d.map{|d| d.dup.force_encoding("UTF-8") } }
@konkurrencer.attributes.except(:created_at, :updated_at).map{|d| d.map{|d| d.dup.force_encoding("UTF-8") } }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文