我刚刚解决了一个奇怪的错误。我正在使用有效的json和application / json标头发送REST PUT调用。
PUT调用中的json是
{
"gravatarURL": "http://www.gravatar.com/avatar/?d=mm"
}
有关为什么有效json未在req.params中被识别的任何想法?
处理变通方法的代码将json主体解析为params是
updateProfile: function(req, res) {
tag = 'UserController.updateProfile' ;
user = {} ;
user.id = req.session.userId ;
if (!user.id){
user.id = 0 ;
}
/* the following line of code should result in params with elements */
params = req.params ;
/* what I get is params == [] */
/* this is the start of the workaround */
if ( params.length == 0) {
try {
/* copying the body creates a valid json object */
params = {}
params.body = req.body ;
params = params.body ;
/* gravatarURL is the parameter sent in via the REST PUT call */
user.gravatarURL = params.gravatarURL ;
} catch (e){
/* ignore and pass through to error with no params */
console.log( tag + '.error: ' + e.message ) ;
}
} else {
/* this is what I expect to be able to do */
user.gravatarURL = req.param['gravatarURL'] ;
}
if ( user.id && user.gravatarURL) {
console.log( tag + '.update.start' ) ;
User.update({ id: user.id }, { gravatarURL: user.gravatarURL }, function(error, updatedUser) {
if (error) {
console.log( tag + '.update.error: ' + error.message ) ;
return res.negotiate(error);
} else {
console.log( tag + '.update.finish: ' ) ;
return res.json(updatedUser);
}
});
} else {
if ( !user.id ) {
error = {} ;
error.message = 'authorisation required. please login.' ;
return res.badRequest({error:error}) ;
}
if ( !user.gravatarURL ) {
error = {} ;
error.message = 'gravatarURL: required' ;
return res.badRequest({error:error}) ;
}
}
} ,
答案 0 :(得分:1)
取决于您的调用方式取决于参数在请求对象(req)上的显示位置。
由于您正在使用application / json标头发送JSON对象,因此该对象将添加到req.body中。具有URL路径的请求将添加到req.params。根据{{3}} req.params是'包含从URL路径解析的参数值的对象。例如,如果您有route / user /:name,则URL路径中的“name”将作为req.params.name提供。该对象默认为{}。
因此,如果您想通过req.params访问该参数,您可以将请求更改为'/updateProfile?gravatarURL=www.someurl.com,否则如果您传递JSON对象,它将在req.body中可用。因此,您的解决方法是多余的,因为设计中您想要访问的内容已经安全地存储在req.body中。
文档并没有尽力解释这一点,但通过一些试验和错误,很容易找出传递的值在请求对象上显示的位置。