【发布时间】:2020-09-25 14:15:34
【问题描述】:
我得到 TypeError: Cannot read property 'forEach' of undefined。我不知道下面的代码有什么问题:
app.post("/entershop", (request, response)=> {
let username = request.body.uname;
let psw = request.body.psw;
let rawdata = fs.readFileSync('mapping.json');
let rootdata = JSON.parse(rawdata);
let isvalid = false;
let shops = rootdata["shops"];
shops.forEach(function(shop) {
var password = shop[username][0];
if(password === psw)
{
console.log('successful login');
}
else
{
console.log('login unsuccessful');
}
});
});
网页中显示如下错误:
TypeError: Cannot read property 'forEach' of undefined
at app.post (/home/ubuntu/TheRandomShops/index_test.js:33:15)
at Layer.handle [as handle_request] (/home/ubuntu/TheRandomShops/node_modules/express/lib/router/layer.js:95:5)
at next (/home/ubuntu/TheRandomShops/node_modules/express/lib/router/route.js:137:13)
at Route.dispatch (/home/ubuntu/TheRandomShops/node_modules/express/lib/router/route.js:112:3)
at Layer.handle [as handle_request] (/home/ubuntu/TheRandomShops/node_modules/express/lib/router/layer.js:95:5)
at /home/ubuntu/TheRandomShops/node_modules/express/lib/router/index.js:281:22
at Function.process_params (/home/ubuntu/TheRandomShops/node_modules/express/lib/router/index.js:335:12)
at next (/home/ubuntu/TheRandomShops/node_modules/express/lib/router/index.js:275:10)
at serveStatic (/home/ubuntu/TheRandomShops/node_modules/serve-static/index.js:75:16)
at Layer.handle [as handle_request] (/home/ubuntu/TheRandomShops/node_modules/express/lib/router/layer.js:95:5
mapping.json 如下所示:
{
"owners":[
{"name":"Bala", "id":"1", "psw":"bala"},
{"name":"Rohit", "id":"2", "psw":"Rohit"}
],
"employees":[
{"name":"Krithi", "owners":"Bala", "psw":"Krithi"},
{"name":"Kumar", "owners":"Rohit", "psw":"Kumar"}
]
}
非常感谢您的帮助。
【问题讨论】:
-
您解析的数据没有
shops属性。有owners和employees属性,但没有shops。所以rootdata["shops"]是undefined。 -
让 rawdata = fs.readFileSync('mapping.json');让 rootdata = JSON.parse(rawdata);这两个需要一些时间,所以在这两个完成之前执行其余代码
-
@SfaheequeTP readFileSync 是...同步的。
标签: javascript jquery node.js arrays json