TypeError:无法读取未定义的属性呈现

时间:2020-03-11 18:37:15

标签: node.js express http

我暂时在这个问题上遇到了麻烦,我是nodejs的新手。有人能帮我一下吗。这是我的代码。启动应用时遇到错误。

TypeError:无法读取未定义的属性“ render”

  app.listen(4444,function(res){
  var url = endpoint+'/v1/supply/env';
  var env=null;
    require('http').get(url, (resp) => {
        resp.setEncoding('utf8');
        resp.on('data', function (response) {
            var body = JSON.parse(response);
            var supplyApiEndpoint = body.endpoint;
            console.log("Endpoint: "+supplyApiEndpoint);
            res.render('index',{env: supplyApiEndpoint})
        });
});
console.log("Server started on port 4444");
})

0 个答案:

没有答案