gpt4 book ai didi

haml_tag 不返回任何字符串

转载 作者:行者123 更新时间:2023-11-30 23:47:22 27 4
gpt4 key购买 nike

嗨,我试图复制我的旧 haml_tags,但它们似乎不适用于 Rails 3.1rc4,或者我做错了什么。任何人都可以指出我正确的方向吗?

def bonus_value_of(stat)
bonus = current_user.character.send("bonus_#{stat}".to_sym)
capture_haml do
haml_tag :span, :class => "positive" do
"+#{bonus}"
end
end
end

这就是我调用的代码
= bonus_value_of(stat)

我得到的只是一个空白,有积极的类(class)但没有内容(甚至没有加分)

这是一个错误吗?

最佳答案

这是我的版本。

1.你的助手应该在 Controller 的助手中,而不是在module Haml::Helper就像在某些文章中描述的那样。

2.将您的助手更改为:

def bonus_value_of(stat)
bonus = current_user.character.send("bonus_#{stat}".to_sym)
haml_tag :span, :class => "positive" do
haml_concat "+#{bonus}"
end
end

然后在您的 View 中使用它,如下所示:
- bonus_value_of(stat)

关于haml_tag 不返回任何字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6529404/

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