gpt4 book ai didi

ruby-on-rails - 是否可以让 Rails 中的 View 助手生成 Haml 缩进 HTML?

转载 作者:行者123 更新时间:2023-12-03 16:06:21 26 4
gpt4 key购买 nike

假设我有一个带有 View 助手方法的事物资源,例如:

module ThingsHelper
def foo
ret = ""
3.times { ret += content_tag(:li, "foo") }
content_tag(:ul, ret)
end
end

然后,在模板中使用它:
%p
= foo

生成的 HTML 源代码如下所示:
<!DOCTYPE html>
<html>
<head>
<title>Foo</title>
</head>
</html>
<body>
<p>
<ul><li>foo</li><li>foo</li><li>foo</li></ul>
</p>
</body>

正如您所看到的,帮助程序的输出没有像代码的其余部分那样缩进。有什么办法可以补救吗?

最佳答案

试用 haml_tag helper method提供哈姆勒。就像 content_tag在某些方面,但它输出正确缩进的 HTML。主要区别在于它直接输出到模板,而不是返回一个字符串。例如:

module ThingsHelper
def foo
haml_tag :ul do
3.times { haml_tag(:li, "foo") }
end
end
end

(作为旁注,使用两个空格以外的东西作为缩进被认为是非常糟糕的 Ruby 风格)。

关于ruby-on-rails - 是否可以让 Rails 中的 View 助手生成 Haml 缩进 HTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1528166/

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