コレクションのサブスクライブで奇妙な隕石の動作に直面しています。1 つの抽象ルート メールボックスがあり、その下に 3 つのルートがあります。Inbox、sent、および singleMail (両方からの 1 つのメールの詳細を表示しています)。今の問題は、単一のメール ルートでメール コレクションを解決すると、両方の異なるコレクションを公開しているにもかかわらず、受信トレイと送信済みの両方に同じメール コレクションをバインドすることです。注 : 両方から単一のメール ルートに移動するまで、完全に機能しています。たとえば、受信トレイまたは送信済みのメールをクリックすると、単一のメール ルートに移動し、メールの詳細が表示されます。そして戻ったとき。ここから問題が始まります。両方のメール コレクションをサブスクライブします。つまり、受信ボックスに 6 があり、送信済みボックスに 3 がある場合、どちらも 9 と表示されます。私は何時間も試しましたが、運がありませんでした。どんな助けでも大歓迎です! 正確な問題に対処するために多くのコードを貼り付けています。メールはこちら。
Meteor.publish("mails", function (obj) {
//Will use for admin
isAuth(this);
var query = {identity:this.userId};
if (obj) {
query[obj.condition] = obj.id;
}
return Mails.find(query);
});
Meteor.publish("mailsTo", function (options) {
//if user not logged in
isAuth(this);
Counts.publish(this, 'countOfNewMails', Mails.find({identity: this.userId, 'to.id': this.userId, unread: true}));
Counts.publish(this, 'countOfToMails', Mails.find({identity: this.userId, 'to.id': this.userId}), { noReady: true });
return Mails.find({identity: this.userId, 'to.id': this.userId}, options);
});
Meteor.publish("mailsFrom", function (options) {
//if user not logged in
isAuth(this);
Counts.publish(this, 'countOfFromMails', Mails.find({identity: this.userId, from: this.userId}), { noReady: true });
return Mails.find({identity: this.userId, from: this.userId}, options);
});
これが私のroute.jsです
angular.module('Secret')
.config(['$urlRouterProvider', '$stateProvider', '$locationProvider',
function($urlRouterProvider, $stateProvider, $locationProvider){
$locationProvider.html5Mode(true);
$stateProvider
.state('home', {
url: '/home',
templateUrl: 'client/home/views/home.ng.html',
controller: 'homeCtrl'
})
.state('login', {
url: '/homes/:id/login',
templateUrl: 'client/login/views/login.ng.html',
controller: 'loginCtrl'
})
.state('signup', {
url: '/homes/:id/signup',
templateUrl: 'client/signup/views/signup.ng.html',
controller: 'signupCtrl'
})
.state('forgotPassword', {
url: '/homes/:id/forgot-password',
templateUrl: 'client/forgotPassword/views/forgotPassword.ng.html',
controller: 'forgotPasswordCtrl'
})
.state('profile', {
url: '/profile',
templateUrl: 'client/profile/views/profile.ng.html',
controller: 'profile'
})
.state('mailbox', {
url: '/mailbox',
templateUrl: 'client/mailBox/views/mailbox.ng.html',
controller: 'mailboxCtrl',
abstract: true
})
.state('mailbox.inbox', {
url: '/inbox',
templateUrl: 'client/inbox/views/inbox.ng.html',
controller: 'inboxCtrl',
resolve: {
"currentUser": ["$meteor", function($meteor){
return $meteor.requireUser();
}]
}
})
.state('mailbox.sent', {
url: '/sent',
templateUrl: 'client/sent/views/sent.ng.html',
controller: 'sentCtrl'
})
.state('mailbox.singleMail', {
url: '/:folder/:id',
params: {
hasnext: null
},
templateUrl: 'client/singleMail/views/single.ng.html',
controller: 'singleCtrl',
resolve: {
"currentUser": ["$meteor", function($meteor){
return $meteor.requireUser();
}],
statesSub: ['$meteor', '$stateParams', function($meteor, $stateParams) {
return $meteor.subscribe('mails', $stateParams.id);
}]
}
})
.state('mailbox.compose', {
url: '/compose/:r/:mailId',
templateUrl: 'client/compose/views/compose.ng.html',
controller: 'composeCtrl'
})
$urlRouterProvider.otherwise("/home");
}])
.run(['$rootScope', '$state',
function($rootScope, $state){
$rootScope.$on("$stateChangeError", function(event, next, previous, error) {
// We can catch the error thrown when the $requireUser promise is rejected
// and redirect the user back to the main page
//if (error === "AUTH_REQUIRED") {
$state.go("home");
//}
});
}]);
コントローラーでは単純な SentCtrl として
$scope.page = 1;
$scope.perPage = 50;
$scope.sort = { createdAt: -1 };
//get reactively
$meteor.autorun($scope, function() {
$scope.mails = $scope.$meteorCollection(Mails).subscribe('mailsFrom',{
limit: parseInt($scope.getReactively('perPage')),
skip: (parseInt($scope.getReactively('page')) - 1) * parseInt($scope.getReactively('perPage')),
sort: $scope.getReactively('sort')
})
})
受信トレイCtrl
$scope.page = 1;
$scope.perPage = 50;
$scope.sort = { createdAt: -1 };
$scope.pagechanged = function(sign){
sign ? $scope.page++ : $scope.page--;
}
//get reactively
$meteor.autorun($scope, function() {
$scope.inbox = $scope.$meteorCollection(Mails).subscribe('mailsTo',{
limit: parseInt($scope.getReactively('perPage')),
skip: (parseInt($scope.getReactively('page')) - 1) * parseInt($scope.getReactively('perPage')),
sort: $scope.getReactively('sort')
})
})
単一のメールでは、パラメータでメールを取得しています
$scope.currentMail = $meteor.object(Mails, $stateParams.id);