Active Admin 中相关对象的好名称

发布于 2025-01-04 18:22:00 字数 523 浏览 1 评论 0原文

我正在将 Ruby on Rails 与 Active Admin 一起使用,并且我有一个与用户模型相关的模型。一切正常,只是代替用户电子邮件或其他内容,它在创建新对象时在选择框中显示用户对象。例如:

<select id="playground_open_time_user_id" name="playground_open_time[user_id]">
  <option value=""></option>
  <option value="15">#<User:0x7fb553945628></option>
  <option value="44">#<User:0x7fb553943508></option>
  <option value="51">#<User:0x7fb553942ef0></option>
</select>

如何以及在哪里可以更改它显示电子邮件或名字+姓氏?

I am using Ruby on Rails with Active Admin and I have one model where there is relation to user model. Everything works, just instead of user email or something, it shows user object in select box when creating new object. For example:

<select id="playground_open_time_user_id" name="playground_open_time[user_id]">
  <option value=""></option>
  <option value="15">#<User:0x7fb553945628></option>
  <option value="44">#<User:0x7fb553943508></option>
  <option value="51">#<User:0x7fb553942ef0></option>
</select>

How and where could I change that it would show email or firstname + lastname instead?

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

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

发布评论

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

评论(3

情归归情 2025-01-11 18:22:00

您是否尝试将方法“名称”添加到您的模型中,例如:

class User
  def name
    "#{first_name} #{last_name}"
  end
end

Have you try adding the method "name" to your model, something like :

class User
  def name
    "#{first_name} #{last_name}"
  end
end
叹梦 2025-01-11 18:22:00

您可以向模型添加一个方法,例如 pretty_string,或者添加一个类似于 pretty_user_string(user) 的视图助手。然后,您必须更新视图才能调用好的方法/函数。

You could either add a method to your model, something like pretty_string, or add a view helper looking like pretty_user_string(user). You'll then have to update your view to call the good method/function.

浅浅淡淡 2025-01-11 18:22:00

最简单的方法是在模型对象上定义一个 to_s 方法,如下所示:

def to_s
self.first_name
end

每当 ActiveAdmin 遇到您的对象并且需要显示它时,它将使用从该方法返回的值。它非常类似于许多 Java 框架使用的 toString() 方法。

The easy thing to do is to define a to_s method on your model object like so:

def to_s
self.first_name
end

Whenever ActiveAdmin encounters your object and it needs to display it, it will use the value returned from the method. It's pretty much like the toString() method that many Java frameworks use.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文