Closed mako4kamiya closed 3 years ago
axios:getリクエストでrequest bodyは送れない。 // data is the data to be sent as the request body // Only applicable for request methods 'PUT', 'POST', 'DELETE , and 'PATCH'
data
apiへのgetリクエストのパスパラメータにuserid含めれば良いのでは!
結果、パスパラメーターでもできた!けど、 ヘッダー情報のトークンから、id取れることが判明したので、idをパスに含める必要がなくなった! req.userId = decoded.id;
User Boardに書く
localStorageに保存してあるユーザー(currentUser)情報を、apiに送る
axios:getリクエストでrequest bodyは送れない。 //
data
is the data to be sent as the request body // Only applicable for request methods 'PUT', 'POST', 'DELETE , and 'PATCH'apiへのgetリクエストのパスパラメータにuserid含めれば良いのでは!