加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ruby-on-rails – 在HAML文档中的Ruby插值中挽救异常

发布时间:2020-12-17 03:03:22 所属栏目:百科 来源:网络整理
导读:我在HAML文档中有一些内插的 ruby代码,如下所示: :javascript a = { 'something' : "#{model.attribute.present? ? method(parameter) : ''}" } 但是,方法(参数)抛出一些带有参数的异常,所以我想解救异常.抛出异常时,我希望将’something’键映射到其他东西
我在HAML文档中有一些内插的 ruby代码,如下所示:

:javascript
    a = { 'something' : "#{model.attribute.present? ? method(parameter) : ''}" }

但是,方法(参数)抛出一些带有参数的异常,所以我想解救异常.抛出异常时,我希望将’something’键映射到其他东西.

我不清楚如何使用HAML代码/ ruby??插值执行此操作的确切语法.我尝试了几件事,但它没有用.

谢谢!

解决方法

你应该走这条路

model.attribute.present? ? method(parameter) : ''

并从中制作一个帮助方法

class ApplicationHelper
  def some_method
    model.attribute.present? ? method(parameter) : ''
  rescue
    "something else" # this is your value in case of exception
  end
end

然后你的HAML变得微不足道

:javascript
    a = { 'something' : "#{some_method}" }

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读