simple_form_for 错误:rails 3 中参数数量错误(3 为 2)

发布于 2024-11-19 04:14:38 字数 281 浏览 4 评论 0原文

我在 Rails 3(使用 haml)中遇到 simple_form_for 标记的参数数量错误(3 for 2)错误。 有趣的是,不久前它运行良好。

= simple_form_for(:user,@user, :url => user_path, :remote => true, :html => { :id => "locate", :class=>"locateform" }) do |f

任何指示/帮助都会很棒。

谢谢

I am getting wrong number of arguments (3 for 2) error for simple_form_for tag in rails 3 (with haml).
Interestingly it was working fine some moment back.

= simple_form_for(:user,@user, :url => user_path, :remote => true, :html => { :id => "locate", :class=>"locateform" }) do |f

any pointers/help would be great.

Thanks

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

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

发布评论

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

评论(1

寂寞陪衬 2024-11-26 04:14:38

这部分看起来很可疑。

:user,@user,

您是否不小心删除了 :as => ?我认为应该是

:user, :as => @user

This part looks suspicious.

:user,@user,

Did you acciddentally delete the :as => ? I think it should be

:user, :as => @user
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文