作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在我的页面上有一个链接(有更好的选择吗?),点击后会发出 Ajax 请求。 (我想在单击链接时更新数据库中的字段。)
实现这一目标的最简单方法是什么?
你能给我推荐一些教程吗?
最佳答案
真的很简单。在您看来,有一个像这样的链接/按钮。重要的一点是 :remote => true
<%= link_to 'Update Thingy', update_thingy_path, :confirm => 'You sure you wanna update?', :remote => true %>
<%= button_to('Update Thingy', {:action => 'update_thingy', :thingyid => 314}, :method => :get, :remote => true) %>
$('#notice').html("Thingy was update.")
render :js => "alert('Blah')"
关于ruby-on-rails - rails 3 : How to make an Ajax call?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5280445/
我是一名优秀的程序员,十分优秀!