奇怪的请求在Mean.io

时间:2015-06-30 14:01:47

标签: javascript angularjs node.js mongodb mean.io

我已经从Github克隆了一个存储库,可以在其他计算机上完美运行(MacOS X和Windows)但是由于某种原因我无法登录。这是一个基本的Mean.io项目。它装载完美。我正常注册,但是当我尝试登录时,它会将我重定向到/。用户正确存储在mongo中,所以我不知道/不知道发生了什么。我也使用node-inspector进行了调试,但没有得到任何结果。

我从调试中发现,在我的计算机中,代码在这部分中的行为是错误的(packages / users / public / controllers / meanUser.js):

// authentication OK
$scope.loginError = 0;
$rootScope.user = response.user; // here $scope.global.authenticated is false
$rootScope.$emit('loggedin');    // $scope.global.authenticated is set to true
if (response.redirect) { // here $scope.global.authenticated is false again and it shouldn't but haven't been able to find out what's the problem

这是我的package.json

"name": "mean",
  "description": "MEAN.io: A fullstack JavaScript framework powered by MongoDB, ExpressJS, AngularJS, NodeJS.",
  "version": "0.4.3",
  "private": false,
  "author": "Linnovate <mean@linnovate.net>",
  "contributors": "https://github.com/linnovate/mean/graphs/contributors",
  "mean": "0.4.3",
  "repository": {
    "type": "git",
    "url": "https://github.com/linnovate/mean.git"
  },
  "engines": {
    "node": "0.10.x",
    "npm": "1.3.x"
  },
  "scripts": {
    "start": "node server",
    "mocha": "node node_modules/.bin/mocha packages/**/server/tests/**/*.js -R spec -r tools/test/mocha-req.js",
    "karma": "node node_modules/karma/bin/karma start",
    "test": "grunt test",
    "postinstall": "node node_modules/meanio/node_modules/mean-cli/bin/mean-postinstall"
  },

我有节点:0.10.33        平均值:0.4.3        mean-cli:0.9.14        mongo:2.6.5

这是我的节点日志,非常奇怪的是请求是重复的。

It is very strange that requests are duplicated

我的网络标签

Chrome :(工作和不工作) enter image description here

Firefox :(工作和不工作) enter image description here

非常感谢任何帮助。

修改

我已经更新了节点,npm,mean,bower和gulp到最后一个版本,虽然我收到了这个错误:

[Error: Module did not self-register.]
js-bson: Failed to load c++ bson extension, using pure JS version
Mean app started on port 3000 (development) cluster.worker.id: 0

情况有所改善:现在请求只进行一次

1 个答案:

答案 0 :(得分:0)

最终,我意识到sudo npm install出了问题,但我仍然不知道为什么。所以,我的解决方案是从我的合作伙伴那里复制一个文件夹并使用它。

然而,我必须深入研究node和npm的安装。