在rails中 以客户端去访问服务器端 经常会终端出现
Can't verify CSRF token authenticity
这是由于客户端访问服务器端 rails会需要token验证
只需要在服务端对应的Controller中加入
skip_before_filter :verify_authenticity_token,:only => : function_name
就可以了
在rails中 以客户端去访问服务器端 经常会终端出现
Can't verify CSRF token authenticity
这是由于客户端访问服务器端 rails会需要token验证
只需要在服务端对应的Controller中加入
skip_before_filter :verify_authenticity_token,:only => : function_name
就可以了