1
我想獲得一把umbraco當前用戶的詳細信息(還不是會員,只有用戶/管理員)來獲得當前一把umbraco用戶詳細信息。我需要用JS讓我細節,我用userService,它返回undefined ..我不知道爲什麼...... 有沒有辦法使用納克& JS來獲取當前用戶的詳細信息?如何使用JS
// JS - 例如
angular.module('umbraco').controller('LoginController', [
'$scope',
'$http',
'editorState',
'contentResource',
'userService',
function ($scope, $http, editorState, contentResource, userService) {
$scope.loginAsMember = function() {
var _memberId = editorState.current.id;
$scope.curUser = userService.getCurrentUser();
);
};
}
]);