ngStorageに問題があります。ファクトリーをjQueryの$ajax
に使用すると、を.then()
(使用できません)に使用することはできません。
$scope.updateProfile = function() {
updateProfileFactory.init($scope.dataProfile).then(
function (data)
if (data.status == "success") {
$localStorage.currentUser.fullname = $scope.dataProfile.u_fullname;
}
}
)
}
私はそれが仕事の罰金、.then()
外$localStorage
を使用しますが、私の中にそれを置く必要がある場合。
$scope.updateProfile = function() {
$localStorage.currentUser.fullname = $scope.dataProfile.u_fullname;
updateProfileFactory.init($scope.dataProfile).then(
function (data) {
if (data.status == "success") {
// code
}
}
)
}
問題はどこですか?
「動作しません」と定義するのをより困難にしてください。 'then'関数が呼び出されたかどうかをデバッグできますか? –