问题标签 [button-to]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
ruby-on-rails - 我正在尝试重写 button_to
我正在尝试重写以下按钮代码,而不是将我重定向到show
页面,它只是创建对象并保持显示当前页面。
ruby-on-rails - rails button_to current_user 正确路径
我可以使用什么路径来显示current_user
自己列出的产品?
而不是root_path
我尝试使用@product.user.all
which 不起作用。
谢谢!
编辑:
以及 Devise 的所有标准路线。
ruby-on-rails - Ruby on Rails 4 - Button_to 无法按预期工作
我有一张用户可以接受或拒绝的挑战表,但我无法让它正常工作。当用户单击接受按钮时,他应该收到一个通知,表明挑战已被接受(不起作用 - 它总是不被接受)并且应该刷新站点 -有效
我对 button_to 使用了“丑陋”的方式,因为我需要 class 和 remote true 属性。而且我知道 - “拒绝”按钮不是最新的,因为我现在使用接受按钮。
这是控制器 - 我有一个巨大的问题,我似乎无法使用challenge_params。
我也总是进入错误循环,即使 :accepted 是真的
这是路线文件
javascript - button_to 上的远程 true 不进行 ajax 调用
我正在做一个小型 Rails 应用程序。
我正在尝试进行 ajax 调用。尽管我使用remote: true
button_to 正在发出非 ajax 请求。它把我重定向到这个网址http://localhost:3000/lines?product_id=1
任何想法?
谢谢!
---编辑---这是我的application.js
ruby-on-rails - Rails 4:button_to不提交参数
我试图让以下工作 - 基本上,按钮提交给 searchs_controller 索引操作,并且应该将 params[:search_task] 传递给它。但由于某种原因,它不起作用。
在标题的同一页面上,我在标题中有这个,这是一个输入字段,做同样的事情,并且工作正常。如果您查看每个在 HTML 中生成的内容,我不明白第一个代码块中的隐藏字段与第二个代码块中 form_tag 中的输入相同。
ruby-on-rails - button_to 渲染 pdf 格式
在我的控制器中,我有以下操作:
在视图中,我希望用户能够在单击 button_to 元素时打开(下载)format.pdf(我确实有一个 booking_sheet_report.pdf.erb 视图)。使用 link_to ( <%= link_to 'PDF', booking_sheet_report_path(format: :pdf) %>
) 可以正常工作。
我尝试了以下操作但没有成功:
第二个给出错误:No route matches {:action=>"booking_sheet_report(format: :pdf)", :controller=>"reports", :form=>{"data-type"=>"pdf"}}
任何线索这怎么可能或我做错了什么?
编辑:一条相关路线是get 'booking_sheet_report' => 'reports#booking_sheet_report'
ruby - Ruby on rails: Button_to Check post result and update current page
In my UI, I have a table of items. Each row has a favorite button. I am using button to make a rails call to add the db association.
I've been looking into how to check the result of the post response in my button to call.
If it succeeds, I want to disable the favorite button on my page and if it doesn't I want to nothing. Is there a way to check the post response in my button to call and is there a way to stay on the page?
Heres a sample of what I have
ruby-on-rails - 除了数据之外,还向 button_to 添加自定义文本字段
我button_to
在其中添加了一个名为“DELETE”
我还希望添加一个自定义文本字段,在删除之前询问用户适当的原因,然后将其存储。confirm
除了默认值或disabled
选项之外,我可以在数据中添加文本字段吗?
到目前为止,我已经使用 window.open 完成了它,但这只是一种解决方法。
ruby-on-rails - 在 Rails 中向 button_to 添加类不起作用
我正在尝试在 Rails 中添加一个带有 button_to 的类,但我不断收到语法错误。这就是我所拥有的:
我尝试过将各种东西放入和取出牙套,但我无法让它发挥作用。有任何想法吗?
ruby-on-rails - Rails,当用户单击 button_to 时检查条件
我正在做一个预订电影的应用程序。对于每部电影都有一个“书”按钮,通常它只是直接指向由控制器处理的另一个页面。但是有没有办法做到这一点?如果用户之前没有登录,显示一个重定向到登录页面的弹出窗口,否则直接到预订控制器?
我的电影控制器中的电流是:
如果我在此页面中检查条件或者我必须在 BookingController 中检查是否有可能?