这是我的一个简单的node.js应用程序的代码:

var http = require('http');
var fs = require('fs');
var path = require('path');
var url = require('url');
var port = process.env.port || 1337;

http.createServer(function onRequest(req, res) {

var urlParts = url.parse(req.url);

var doc = '/docs' + urlParts.pathname;

path.exists(doc, function fileExists(exists) {

    if (exists) {

        res.writeHead(200, { 'Content-Type': 'text/plain' });
        fs.createReadStream(doc).pipe(res);

    } else {
        res.writeHead(404);
        res.end('Not Fouind\n');
    }
});
}).listen(port);

当我尝试运行它时,出现以下错误:
path.exists(doc, function fileExists(exists) {
                                    ^
                                  TypeError:Undefined is not a function

这是从教程中复制过来的,所以我不确定发生了什么。 (PS:我正在使用Visual Studio)

最佳答案

我认为path.exists已过时。我一直在使用fs.exists。试试看

关于javascript - Node JS初学者遇到错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30901918/

10-13 09:42