Rails 似乎对 text_area 有问题

发布于 2024-10-10 00:25:01 字数 1453 浏览 2 评论 0原文

Rails 3.0.3 似乎不接受 <%= f.text_area :message, :class => “share_ta” %> 作为有效的语句,并显示 ActionView::Template::Error (undefined method 'message' for []:Array):

有谁知道为什么吗?

--编辑--

这是 form_for

        <%= form_for :activity, :url => post_activity_path do |f| %>
            <div class="share_tb">
                <div class=share_t><span style="margin-left: 10px;">Tell us what's new <span style="color: #1fc2d1;"><%= @user.name %></span></span></div>
                <%= f.text_area :message, :class => "share_ta" %>
            </div>
            <div id=sm_share class=sm_share_rc>
                <ul>
                    <li style="color: #6b6b6b; font-size: 10pt; display: inline; list-style-type: none; float: right; margin-right: 10px; margin-top: 5px;"><%= f.check_box :everyone, "0", :class => "styled" %>Everyone</li>
                    <li style="color: #6b6b6b; font-size: 9pt; display: inline; list-style-type: none; height: 3px; float: left; margin-top: 5px;"><input type="checkbox" name="friends_only" value="3" class="styled">My Friends<br></li>
                </ul>
                 <%= f.submit "Share", :class => "sm_share_b" %>
                </div>
            </div>
        <% end %>

Rails 3.0.3 does not seems to accept <%= f.text_area :message, :class => "share_ta" %> as a valid statement, and says ActionView::Template::Error (undefined method 'message' for []:Array):

Does anyone know why?

--Edit--

This is the form_for

        <%= form_for :activity, :url => post_activity_path do |f| %>
            <div class="share_tb">
                <div class=share_t><span style="margin-left: 10px;">Tell us what's new <span style="color: #1fc2d1;"><%= @user.name %></span></span></div>
                <%= f.text_area :message, :class => "share_ta" %>
            </div>
            <div id=sm_share class=sm_share_rc>
                <ul>
                    <li style="color: #6b6b6b; font-size: 10pt; display: inline; list-style-type: none; float: right; margin-right: 10px; margin-top: 5px;"><%= f.check_box :everyone, "0", :class => "styled" %>Everyone</li>
                    <li style="color: #6b6b6b; font-size: 9pt; display: inline; list-style-type: none; height: 3px; float: left; margin-top: 5px;"><input type="checkbox" name="friends_only" value="3" class="styled">My Friends<br></li>
                </ul>
                 <%= f.submit "Share", :class => "sm_share_b" %>
                </div>
            </div>
        <% end %>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听,心雨的声音 2024-10-17 00:25:01

@Amit,

你是如何指定form_for的?

编辑:第二次提供来自原始海报的更多信息。

应该是

<%= form_for :activity, :url => acti_path do |f| %>
  <%= f.text_area :message, :class => "share_ta" %>
<% end %>

@Amit,

How have you specified form_for?

EDIT: 2nd time with more information from original poster.

It should be

<%= form_for :activity, :url => acti_path do |f| %>
  <%= f.text_area :message, :class => "share_ta" %>
<% end %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文