TypeError:Object [object Object],[object Object]没有找到方法

时间:2015-03-19 21:10:08

标签: javascript json node.js mean-stack

我在一本名为" Sitepoint Full Stack Javascript with MEAN"我刚刚完成了第6章,并且应该创建一个"服务器"使用"数据库"。数据库只不过是一个JSON文档。 然而,即使(我可以看到),我的代码是他的直接副本,当我尝试运行它时,我得到标题中提到的错误。它的var result = data.find(function(item) {...(位于employees.js的行,关于第16行)是导致此问题的原因。我无法看到我还能做些什么,并希望人们能找到解决问题的方法。

我使用了几个不同的文件。

Index.js:

var http = require('http');
var employeeService = require('./lib/employees');
var responder = require('./lib/responseGenerator');
var staticFile = responder.staticFile('/public');

http.createServer(function(req,res) {
    // a parsed url to work with in case there are parameters
    var _url;

    //In case the client uses lower case for methods
    req.method = req.method.toUpperCase();
    console.log(req.method + ' ' + req.url);

    if (req.method !== 'GET') {
        res.writeHead(501, {
            'Content-Type': 'text/plain'
        });
        return res.end(req.method + ' is not implemented by this server.');
    }

    if (_url = /^\/employees$/i.exec(req.url)) {
        //return a list of employess
        employeeService.getEmployees(function(error, data){
            if(error) {
                return responder.send500(error, res);
            }
            return responder.sendJson(data,res);
        });
    } else if (_url = /^\/employees\/(\d+)$/i.exec(req.url)){ 
        //find the employee by the id in the route
        employeeService.getEmployee(_url[1], function(error, data) {
            if (error) {
                return responder.send500(error, res);
            }
            if(!data) {
                return responder.send404(res);
            }
            return responder.sendJson(data,res);
        });

    } else{
            res.writeHead(200);
            res.end("static file")
    }


}).listen(1337);

console.log('server running');

employee.js

var employeeDb = require('../database/employees.json')

exports.getEmployees = getEmployees;
exports.getEmployee = getEmployee;

function getEmployees (callback) {
    setTimeout(function() {
        callback(null, employeeDb);
    }, 500);
}

function getEmployee (employeeId, callback) {
    getEmployees(function (error, data) {
        if (error) {
            return callback(error);
        }
        var result = data.find(function(item) {
            return item.id === employeeId;
        });
        callback(null, result)
    });
}

responseGenerator.js

var fs = require('fs');

exports.send404 = function (reponse) {
    console.error('Resource not found');
    response.writeHead(404, {
        'Content-Type': 'text/plain'
    });
    response.end('Not Found');
}

exports.sendJson = function(data, response) {
    response.writeHead(200, {
        'Content-Type': 'application/json'
    });

    response.end(JSON.stringify(data));
}

exports.send500 = function(data, response) {
    console.error(data.red);
    reponse.writeHead(500, {
        'Content-Type': 'text/plain'
    });
    response.end(data);
}

exports.staticFile = function(staticPath) {
    return function(data, response) {
        var readStream;

        // Fix so routes to /home and /home.html both work
        data = data.replace(/^(\/home)(.html)?$/i,'$1.html');
        data = '.' + staticPath + data;

        fs.stat(data, function(error, stats) {
            if (error || stats.isDirectory()) {
                return exports.send404(response);
            }

            readstream = fs.createReadStream(data);
            return readStream.pipe(response);
        });
    }
}

employees.json("数据库&#34)

[
    {
        "id": "103",
        "name": {
            "first": "Colin",
            "last": "Ihrig"
        },
        "address": {
            "lines": ["11 Wall Street"],
            "city": "New York",
            "state": "NY",
            "zip": 10118
        }
    },
    {
        "id": "104",
        "name": {
            "first": "Idiot",
            "last": "Fjols"
        },
        "address": {
            "lines": ["Total taber"],
            "city": "Feeeee",
            "state": "Whatever",
            "zip": 10112
        }
    }


]

希望你能提供帮助。

3 个答案:

答案 0 :(得分:5)

本书第80页:

  

find方法关于find方法的快速说明。这是在规范中   对于ECMAScript 6,但目前在Node运行时中不可用   节点版本0.10.32。对于此示例,您可以为其添加polyfill   Array.find方法。 polyfill是用于描述代码的术语   在未来的环境中启用未来的JavaScript功能   支持它。您还可以在lib / employees中编写其他方法   根据ID在数组中定位元素。这段代码   将被删除一次真实的

如果您下载了图书源代码,您可以看到作者确实提供了查找方法:

    Array.prototype.find = function (predicate) {
  for (var i = 0, value; i < this.length; i++) {
    value = this[i];
    if (predicate.call(this, value))
      return value;
  }
  return undefined;
}

答案 1 :(得分:3)

您可以尝试使用.filter方法而不是.find方法。或者将数据库中的数组更改为json。

答案 2 :(得分:0)

index.js(最后else个区块) Em-Ant指出:

  

程序将继续响应'静态文件'   每个请求都没有被前面的路由测试拦截。

https://github.com/spbooks/mean1/issues/3