0
嘗試使用ajax更新帖子。Rails使用ajax更新
posts_controller.rb
def update
if @post.update_attributes(post_params)
flash[:notice] = 'Post updated!'
redirect_to @post
else
flash[:alert] = 'Something wrong'
render :edit
end
end
的application.js
$('.simple_form.edit_post').submit('submit', function (e) {
e.preventDefault();
form = $(this).serialize();
$.ajax({
type: 'POST',
action: $(this).attr('action'),
data: form,
dataType: 'JSON'
}).done(function (data) {
alert(data.notice);
}).fail(function (data) {
alert(data.alert);
});
});
當我嘗試更新我在Chrome控制檯中看到錯誤找不到網頁和報警輸出不確定
這可能有助於http://stackoverflow.com/questions/23967390/rails-flash-notice-via-ajax –