Heim > Fragen und Antworten > Hauptteil
同样的接口请求,使用get工作正常。
使用post请求提示:
Can't verify CSRF token authenticity
在controller 中跳过验证
skip_before_action :verify_authenticity_token, :only => ["your_update_action"]
http://stackoverflow.com/questions/19390389/using-curl-to-access-backend-api-of-rails-app-that-implements-devise
如何通过post请求发送token验证?
phpcn_u15822017-04-24 16:01:32
一般都要在layout文件中调用<%= csrf_meta_tags %>
方法,并在js中引入 jquery_ujs
例如
application.erb
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>you title</title>
.....
<%= csrf_meta_tags %>
</head>
<body>
</body>
</html>
application.js
#= require jquery_ujs
Gemfile
gem 'rails-jquery'