我设法在前端显示海报的UserID,我尝试了许多不同的东西来显示用户名而不是ID。无法找到错误或做什么。
要发布的表单
<form ng-show="$root.currentUser">
<label>Name</label>
<input ng-model="newPost.name">
<label>Description</label>
<input ng-model="newPost.description">
<button ng-click="newPost.owner=$root.currentUser._id; posts.push(newPost)">Add</button>
</form>
控制器
angular.module('posts').controller('PostsCtrl', ['$scope', '$meteor',
function($scope, $meteor){
$scope.posts = $meteor.collection(Posts);
$scope.remove = function(post){
$scope.posts.remove(post);
};
}]);
型号:
Posts = new Mongo.Collection("posts");
Posts.allow({
insert: function (userId, post) {
return userId && post.owner === userId;
},
update: function (userId, post, fields, modifier) {
return userId && post.owner === userId;
},
remove: function (userId, post) {
return userId && post.owner === userId;
}
});
修改 HTML:
<p class="post-user">{{post.owner}}</p>
现在一切正常,但这次它显示的是用户ID而不是用户名。
提前致谢!
答案 0 :(得分:1)
如果你认为其他一切都是正确的,那么试试这个:<p class="post-user">{{post.owner}}</p>
。正如我所说,我不知道流星,也许你的代码是正确的。但是,当您添加帖子时,您将owner
属性设置为用户名。我找不到您设置newPost.username
的地方。
答案 1 :(得分:1)
如果向下滚动此步骤,您可以找到Meteor用户对象的默认结构: http://angular-meteor.com/tutorial/step_09
您在哪里定义用户名?如果你没有定义它,它将不会在任何地方。 通常,用户信息保存在“配置文件”键下,但这取决于您用于登录的服务(Facebook,电子邮件密码)以及您自己保存用户数据的实现。