不知道为什么hasOwnProperty()
我的对象似乎缺少...
我正在从 expressjs3 中的 http 帖子中获取数据,如下所示:
someControllerFunction: function(req, res){
var data = req.body.loc;
...
}
但是,如果我这样做:
data.hasOwnProperty('test');
我得到:
Object object has no method 'hasOwnProperty'
也许我遗漏了一些明显的东西,但是什么?
(节点 10.5,Express 3.2.1)