感谢上一个帖子:Parse, Fetch and Display Current User
我设法显示当前用户的用户名,
我想我也可以使用.getObjectId();
所以我尝试了一下,但是我在控制台中收到错误,告诉我它是 undefined 。
这是我的代码:
$(document).ready(function(){
Parse.initialize("xxxx", "xxxx");
var currentUser = Parse.User.current();
currentUser.fetch().then(function(fetchedUser){
var name = fetchedUser.getUsername();
var uniqueID = fetchedUser.getObjectId();
$('.container').append('<ul class="nav pull-right"><li><a id="nametag" href="#">' + name + '</a></li></ul>');
$('.btn-box-row row-fluid').append('<a href="#" class="btn-box big span4"><i class=" icon-random"></i><b>' + uniqueID + '</b>');
});
});
答案 0 :(得分:1)
尝试使用fetchedUser.id
希望有所帮助