d3未捕获的TypeError:n.domain不是函数

时间:2017-03-22 18:22:17

标签: javascript d3.js

我在我的js文件中运行此代码并且出现错误...例如' Uncaught TypeError:n.domain不是函数' ...

exports.getHomeContent = function(req, res, next) {
    req.session.lastseen = null;
    homeContent.find({})
        .sort({
            "_id": -1
        })
        .limit(5)
        .exec(function(err, content) {
            if (err) {
                res.send(err);
            }
            var last = content.slice(-1);
            req.session.lastseen = last[0]._id;
            console.log("lastseen first is " + req.session.lastseen);
            res.json(content);
        });
}

exports.getNextHomeContent = function(req, res, next) {
    console.log("lastseen is " + req.session.lastseen);

    homeContent.find({
            "_id": { "$lt": req.session.lastseen }
        })
        .sort({
            "_id": -1
        })
        .limit(5)
        .exec(function(err, content) {
            if (err) { res.send(err); }
            console.log("WTF:" + content.slice(-1));
            var lastitem = content.slice(-1);
            req.session.lastseen = lastitem[0]._id;
            res.json(content);
        });
}

有没有人可以帮我解决这个问题?

error

1 个答案:

答案 0 :(得分:0)

对于yAxis有一个拼写错误的Axis更改并尝试...

yAxis = d3.axisLeft(dat);