我有問題ngStorage。當我使用我的工廠jQuery的$ajax
,我不能使用$localStorage
.then()
(它不工作)。
$scope.updateProfile = function() {
updateProfileFactory.init($scope.dataProfile).then(
function (data)
if (data.status == "success") {
$localStorage.currentUser.fullname = $scope.dataProfile.u_fullname;
}
}
)
}
如果我使用$localStorage
外.then()
,它的工作的罰款,但我必須把它放在裏面。
$scope.updateProfile = function() {
$localStorage.currentUser.fullname = $scope.dataProfile.u_fullname;
updateProfileFactory.init($scope.dataProfile).then(
function (data) {
if (data.status == "success") {
// code
}
}
)
}
問題在哪裏?
請儘量定義「不起作用」。你可以調試,看看'then'函數是否曾被稱爲? –