发送current_user
请求时,我无法访问api控制器中的POST
。
它说它是空的。
class ApiController < ApplicationController
before_action :set_default_format
skip_before_action :verify_authenticity_token
private
def set_default_format
request.format = :json
end
end
class Api::V1::PhotosController < ApiController
...
end
我做错了什么?我在SO上阅读了几篇帖子,解决方案无效。