- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 angular-meteor 构建一个相当简单的应用程序。下面是我的 app.js 文件。当用户登录时,他们会被重定向到主状态。通常, $rootScope.currentUser 存在,并且我能够获取需要在 View 等中显示的用户数据。但是有时在刷新时,我收到一条错误消息,指出 $rootScope.currentUser 未定义。我很确定当我尝试访问 Meteor 用户集合时,有时它还没有准备好,但我不知道如何确保每次都会发生这种情况。
Cards = new Mongo.Collection("cards");
Dopewaks = new Mongo.Collection("votes");
Userstats = new Mongo.Collection("userstats");
Votes = new Meteor.Collection("cardStore");
if (Meteor.isClient) {
Meteor.subscribe("votes");
Meteor.subscribe("dopewaks");
Meteor.subscribe("cardStore");
angular.module('dopewak', ['angular-meteor', 'ui.router', 'gajus.swing'])
function onReady() {
angular.bootstrap(document, ['dopewak']);
}
if (Meteor.isCordova)
angular.element(document).on("deviceready", onReady);
else
angular.element(document).ready(onReady);
angular.module('dopewak').config(['$urlRouterProvider', '$stateProvider', '$locationProvider',
function($urlRouterProvider, $stateProvider, $locationProvider){
$locationProvider.html5Mode(true);
$stateProvider
.state('login', {
url: '/login',
templateUrl: 'login.ng.html',
controller: 'card-stack'
})
.state('home', {
url: '/home',
templateUrl: 'index.ng.html',
controller: 'card-stack'
});
$urlRouterProvider.otherwise('/login');
}]);
angular.module('dopewak').controller('card-stack', ['$rootScope', '$scope', '$state', '$meteor', function ($scope, $rootScope, $state, $meteor) {
$scope.dopelist = $meteor.collection(Votes);
if ($state.is('home')) {
console.log($rootScope.currentUser);
if( $rootScope.currentUser.services.hasOwnProperty("twitter") ) {
$scope.profilePic = $rootScope.currentUser.services.twitter.profile_image_url;
$scope.screenName = $rootScope.currentUser.services.twitter.screenName;
} else if($rootScope.currentUser.services.hasOwnProperty("facebook")) {
console.log("facebook");
}
$scope.userStats = $meteor.collection(Userstats);
}
$scope.cardCount = $meteor.collection(Cards).length;
var cards = $meteor.collection(Cards);
var currentIndex = cards.length, temporaryValue, randomIndex ;
// While there remain elements to shuffle...
while (0 !== currentIndex) {
// Pick a remaining element...
randomIndex = Math.floor(Math.random() * currentIndex);
currentIndex -= 1;
// And swap it with the current element.
temporaryValue = cards[currentIndex];
cards[currentIndex] = cards[randomIndex];
cards[randomIndex] = temporaryValue;
}
$scope.cards = cards;
$scope.throwoutleft = function (eventName, eventObject) {
var card = eventObject.target;
var cardID = Dopewaks.insert({ name: eventObject.target.id, userID: $rootScope.currentUser._id, vote: 2, time: new Date().valueOf() });
var doc = Cards.findOne({ "name": eventObject.target.id });
Cards.update({ _id: doc._id }, {$inc: { dopescore: -1 }});
$scope.cardCount--;
var user = Userstats.findOne({ "name": $rootScope.currentUser.profile.name });
var username = $rootScope.currentUser.profile.name;
if(typeof user === 'undefined') {
Userstats.insert( { name: username , waks: 1 } );
} else {
var record = Userstats.findOne({ "name": username });
Userstats.update({ _id: record._id }, {$inc: { waks: 1 }});
}
$('.wak-tip').addClass('animated rubberBand');
$('.wak-tip').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() {
$('.wak-tip').removeClass('animated rubberBand');
});
};
$scope.throwoutright = function (eventName, eventObject) {
var card = eventObject.target;
var cardID = Dopewaks.insert({ name: eventObject.target.id, userID: $rootScope.currentUser._id, vote: 1, time: new Date().valueOf() });
var doc = Cards.findOne({ "name": eventObject.target.id });
Cards.update({ _id: doc._id }, {$inc: { dopescore: 1 }});
$scope.cardCount--;
var user = Userstats.findOne({ "name": $rootScope.currentUser.profile.name });
var username = $rootScope.currentUser.profile.name;
if(typeof user === 'undefined') {
Userstats.insert( { name: username , dopes: 1 } );
} else {
var record = Userstats.findOne({ "name": username });
Userstats.update({ _id: record._id }, {$inc: { dopes: 1 }});
}
$('.dope-tip').addClass('animated rubberBand');
$('.dope-tip').one('webkitAnimationEnd mozAnimationEnd MSAnimationEnd oanimationend animationend', function() {
$('.dope-tip').removeClass('animated rubberBand');
});
};
$scope.throwout = function (eventName, eventObject) {
var card = eventObject.target;
$(card).css('display', 'none');
};
$scope.addCard = function(newCard) {
$scope.addMessage = false;
var cardExist = Cards.find({lowerName: newCard.name.toLowerCase()}, {limit: 1}).count() > 0;
if(newCard.name.length < 2) {
$scope.addMessage = 'Entry must contain at least 2 letters.';
} else if(cardExist) {
$scope.addMessage = 'This card already exists. Try another thing.';
} else {
Cards.insert({ name: newCard.name, lowerName: newCard.name.toLowerCase(), userID: $rootScope.currentUser._id, time: new Date() });
$scope.addMessage = 'Your card was successfully added!';
}
}
$scope.openUpload = function() {
$('.submit-overlay').show();
};
$scope.closeUpload = function() {
$('.submit-overlay').hide();
};
$scope.toggleLeftMenu = function() {
if($("#left-menu").hasClass("menu-visible")) {
$scope.leftMenuShown = false;
$('.modal-bg').css('display', 'none');
$("#left-menu").removeClass("menu-visible");
$("#left-menu").animate({
left: '-250px'
}, 300);
} else {
$scope.leftMenuShown = true;
if($scope.rightMenuShown) {
$scope.toggleRightMenu();
}
$('.modal-bg').css('display', 'block');
$("#left-menu").addClass("menu-visible");
$("#left-menu").animate({
left: '0'
}, 300);
}
};
$scope.toggleRightMenu = function() {
if($("#right-menu").hasClass("menu-visible")) {
$scope.rightMenuShown = false;
$('.modal-bg').css('display', 'none');
$("#right-menu").removeClass("menu-visible");
$("#right-menu").animate({
right: '-250px'
}, 300);
} else {
$scope.rightMenuShown = true;
if($scope.leftMenuShown) {
$scope.toggleLeftMenu();
}
$('.modal-bg').css('display', 'block');
$("#right-menu").addClass("menu-visible");
$("#right-menu").animate({
right: '0'
}, 300);
}
};
$scope.checkMenus = function() {
if($scope.leftMenuShown) {
$scope.toggleLeftMenu();
}
if($scope.rightMenuShown) {
$scope.toggleRightMenu();
}
};
Accounts.onLogin(function () {
if ($state.is('login')) {
$state.go('home');
}
});
Accounts.onLoginFailure(function () {
$state.go('login');
});
}]);
}
if (Meteor.isServer) {
Meteor.startup(function () {
if (Cards.find().count() === 0) {
var cards = [
{'name': 'Test1'},
{'name': 'Test2'},
{'name': 'Test3'}
];
for (var i = 0; i < cards.length; i++)
Cards.insert(cards[i]);
}
});
Votes.allow({
'insert': function (userId,doc) {
/* user and doc checks ,
return true to allow insert */
return true;
}
});
Dopewaks.allow({
'insert': function (userId,doc) {
/* user and doc checks ,
return true to allow insert */
return true;
}
});
Cards.allow({
'insert': function (userId,doc) {
/* user and doc checks ,
return true to allow insert */
return true;
}
});
Cards.allow({
'update': function (userId,doc) {
/* user and doc checks ,
return true to allow insert */
return true;
}
});
Userstats.allow({
'insert': function (userId,doc) {
/* user and doc checks ,
return true to allow insert */
return true;
}
});
Userstats.allow({
'update': function (userId,doc) {
/* user and doc checks ,
return true to allow insert */
return true;
}
});
Meteor.publish("votes", function(args) {
var sub = this;
var db = MongoInternals.defaultRemoteCollectionDriver().mongo.db;
var pipeline = [
{ "$group": {
"_id": "$name",
"likes": { "$sum": { "$cond": [{ "$eq": [ "$vote", 1 ] },1,0] } },
"dislikes": { "$sum": { "$cond": [{ "$eq": [ "$vote", 2 ] },1,0] } },
"total": { "$sum": { "$cond": [{ "$eq": [ "$vote", 1 ] },1,-1] } }
}},
{ "$sort": { "total": -1, "_id": 1 } }
];
db.collection("votes").aggregate(
pipeline,
Meteor.bindEnvironment(
function(err, result) {
_.each(result, function(e) {
e.name = e._id;
delete e._id;
sub.added("cardStore",Random.id(), e);
});
sub.ready();
},
function(error) {
Meteor._debug( "error running: " + error);
}
)
);
});
}
最佳答案
首先,就像 @Matt 提到的那样,您需要修复 $rootScope/$scope 问题。然后在路由中,您可以在需要用户 waitForUser()
: 的任何路由上使用解析
angular.module('dopewak').config(['$urlRouterProvider', '$stateProvider', '$locationProvider',
function($urlRouterProvider, $stateProvider, $locationProvider){
$locationProvider.html5Mode(true);
$stateProvider
.state('login', {
url: '/login',
templateUrl: 'login.ng.html',
controller: 'card-stack',
resolve: {
'currentUser': ['$meteor', function($meteor) {
$meteor.waitForUser();
}]
}
})
.state('home', {
url: '/home',
templateUrl: 'index.ng.html',
controller: 'card-stack'
});
$urlRouterProvider.otherwise('/login');
}]);
这将返回用户订阅,如果未登录,则返回 null。有时 $rootScope.currentUser 在用户订阅启动之前不会填充。
关于javascript - Angular meteor $rootScope.currentUser 未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31712728/
我在尝试在 Meteor.com 上托管的经历非常复杂。 我经常收到“此网站已关闭。稍后再试。”。一开始我不知道为什么,但后来我怀疑问题是我不小心恢复了“system.users”集合造成的。我尝试在
我有点好奇,与复制 Meteor 应用程序、启动 tmux session 并仅运行 meteor 相比,Meteor Up(或其他 Meteor 应用程序部署过程,如 Modulus)是否能做任何花
我与meteor 合作创建了一个应用程序。在 meteor Meteor.methods 和 Meteor.publish 用于执行数据库操作。 I know use of Meteor method
我有一个相当大的 meteor 项目并安装了几个 meteor 包。我这样做只是为了试用一个 meteor 包,看看它是否适用于我的项目。不幸的是,在确定我不需要在我的项目中安装这些包后,我没有卸载这
对于生产为什么我应该“捆绑” meteor 应用程序而不仅仅是复制 服务器上的源使用“ meteor ”命令? 基本上有什么区别: “meteor bundle app.tar.gz”,然后安装正确版
我是 Meteor 的新手,我想知道我们如何要求用户在创建帐户时上传他的图片?我正在使用基本的 Meteor 帐户来创建用户帐户。我希望用户能够上传他的图片,并且还能够在他登录时和在我网站的登录页面上
我正在学习 Meteor Angular 2 教程。在第 6 步,我随机尝试了“ meteor 更新”,这使我的样本崩溃了。更新有效,服务器正在启动。然而,浏览器屏幕现在保持空白,并且在控制台中出现错
在我的 meteor app我需要实现表格排序。现在我正在做的是设置一个 session variable对于每个列并根据要排序的项目切换其值。 任何人都可以提出更好的选择吗? 最佳答案 我推荐 表格
我向用户发送了注册电子邮件,当他输入密码和其他详细信息时,我试图重置密码,但它抛出错误 uncaught error extpected to find a document to change 正如
我运行排行榜示例。然后我更改了 leaderboard.js 中的 names 变量(Meteor.startup 函数参数初始化的一部分)中的科学家条目之一并保存了文件。 我应该期待 meteor
我有一个 meteor 1.0 应用程序。我添加了一堆包,例如:meteor add kevohagan:ramda .但我在任何地方都找不到它。我什至无法在我的系统上找到它。 在我的项目中: $>
我有一个 meteor 移动应用程序在结构上工作;我真的需要将 View 与一些页面转换拼接在一起。 我看了iron-transitioner项目,但看起来开发已经停止? (最后一次提交 6 个月前,
我在“发现 meteor ”一书之后构建了我的第一个 meteor 添加。 但是我现在遇到了以下错误: 错误:在ian:accounts-ui-bootstrap-3 中没有找到accounts_ui
是否可以在负载均衡器后面使用 Mongodb 运行 meteor 应用程序的多个实例? 似乎如果一个应用程序的多个实例在不同的服务器上运行,那么它们就不会知道其他实例对 Mongo DB 所做的更改
我在/client/main.coffee 中的新客户端代码 Xingyun = Meteor.connect "localhost:3000" System = new Meteor.Collect
在 Meteor.publish ,使用 this.error 有什么区别并简单地抛出 Meteor.Error ? 最佳答案 this.error仅在发布方法内可用。每 the docs : Sto
假设我想在 Meteor 的后端使用与 Mongo 不同的数据库,并且还想在前端使用像 D3.js 这样的可视化库。 目前有可能吗? 如果不是我自己添加它会有多复杂? 谢谢 最佳答案 https://
我已经在 Meteor 中制作了一个 watch-as-I-type 实时聊天服务,但是我在 Meteor 中的内置元素保存功能方面遇到了麻烦。基本上,当输入的文本具有焦点时,我需要不更新当前的聊天消
我想知道 Meteor 是否可以与我的用例一起使用。 我有一个可在 App Store 上使用的移动应用程序。这个应用程序包含一个小调查,用户将在没有互联网连接的情况下做出回应。然后用户将关闭应用程序
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 8年前关闭。 Improve this q
我是一名优秀的程序员,十分优秀!