gpt4 book ai didi

ruby-on-rails - haml 给表单元素添加样式

转载 作者:行者123 更新时间:2023-12-02 22:33:13 26 4
gpt4 key购买 nike

似乎找不到这个问题的答案 - 用于向 rails form_for 中的元素添加样式或类样式的 haml 语法是什么?

我正在处理的代码是

.row.form
.threecol
.sevencol
= form_for @article do |a|
%h3= a.label "title"
= a.text_field :title
%h3= a.label "description"
= a.text_area :description
%h3= a.label "body"
= a.text_area :body
%br/
= a.submit "Post Article"
.twocol.last

我想为文本区域描述元素添加样式。我已经尝试过(其中 new_desc 是类样式)

= a.text_area.new_desc :description

= a.text_area { :style ... } :description

但是都编译失败。任何人都可以帮助解决这个(希望是微不足道的)问题吗?

最佳答案

text_area 是一种采用(对象、方法和选项)的方法 (http://api.rubyonrails.org/classes/ActionView/Helpers/FormHelper.html#method-i-text_area)

当你将它附加到表单对象时,你保留了该对象,因此它变成了 text_area(method, options={})

= a.text_area :description, class: "description"

= a.text_area :description, class: "description", style: "font-size: 45"

关于ruby-on-rails - haml 给表单元素添加样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11876191/

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