"-6ren">
gpt4 book ai didi

ruby-on-rails - 如何在Rails的Model方法中获取对象的url_for

转载 作者:行者123 更新时间:2023-12-03 16:00:02 25 4
gpt4 key购买 nike

我想创建一个包含Rails中对象路径的字符串。

  def notification_content   
"#{app.listing_url(my_listing, :host => "example.com")}. " +
end

然后,此内容将作为电子邮件内容输入到我的ActionMailer中。

在控制台中,它可以正常工作。但是,当我在本地主机服务器上运行它时,出现以下错误:
undefined local variable or method `app'

我应该怎么做?另外,如何使该路径成为超链接?

非常感谢。

最佳答案

include Rails.application.routes.url_helpers
def notification_content
"#{listing_url(my_listing, :host => "example.com")}. " + ...
end

关于ruby-on-rails - 如何在Rails的Model方法中获取对象的url_for,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8706678/

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