gpt4 book ai didi

ruby-on-rails - 关于 Rails、Haml 和 Forms 的问题

转载 作者:行者123 更新时间:2023-12-04 06:37:42 26 4
gpt4 key购买 nike

  .section
.title
Subscription

.body
= form_tag(:action => subscribe_url, :method => :post)
= @plans.each do |p|
%tr= p[:blurb]
%tr= p[:price]
.spacer
= submit_tag( 'Subscribe', :class => 'button ok' )

%p
%br
Note: If you wish to cancel your subscription, please
-# link_to "contact Customer Support", "http://support.jobfully.com"

我们看到的错误是这样的:
/home/mei/Jobfully/app/views/subscriptions/list.html.haml:21: 语法错误,意外的keyword_ensure,期待$end

提取的源代码(围绕第 21 行):

18:%br
19:注意:如果您想取消订阅,请
20: -# link_to "联系客户支持", "http://support.jobfully.com"

关于我们在这里做错了什么的任何建议 enter code here将不胜感激。谢谢!

最佳答案

我不知道它是否直接相关但form_tag应该

- form_tag(:action => subscribe_url, :method => :post) do

你的每个循环应该是
- @plans.each do |p|

在你上面发布的haml中有很多我称之为“怪异”的东西。在这里,我的意思是你的标签完全是空的,例如 .section%p因为它们下面没有嵌套任何东西。我会尝试尽可能多地删除并开始逐个重建 haml 文件。

关于ruby-on-rails - 关于 Rails、Haml 和 Forms 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4664487/

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