簡體   English   中英

如何使用angularjs和rails / devise更新密碼?

[英]How to update password using angularjs and rails/devise?

我在嘗試使用帶有舊密碼和新密碼的簡單表單更新用戶密碼時遇到問題。 問題是我將{"user[current_password]":$scope.user.password,"user[password]":$scope.user.newpassword}數據發布到我的Devise::RegistrationsController ,我得到一個簡單的422 Unprocessable Entity響應。 我哪里錯了?

這是我的HTML

<div ng-controller="PasswordCtrl">
    <form id="password-card" class="row" style="display:none;" name="password_form" ng-submit="changePassword()" novalidate>
        <div class="span5">
            <div class="form-inputs">
                <label for="nPass"><%= I18n.t("registration.edit.current_password") %></label>
                <input name="uPass" class="required" type="password" ng-model="user.password" required >
                <div ng-show="password_form.uPass.$dirty && password_form.uPass.$invalid">Missing:
                  <span ng-show="password_form.uPass.$error.required">You must provided your current password.</span>
                </div>                    

                <label for="nPass"><%= I18n.t("registration.edit.new_password") %></label>
                <input name="nPass" class="required" type="password" ng-model="user.newpassword" required >
                <div ng-show="password_form.nPass.$dirty && password_form.nPass.$invalid">Missing:
                  <span ng-show="password_form.nPass.$error.required">Tell us your new password.</span>
                </div>                    
                <button id="x" type="submit" ng-disabled="!password_form.$valid" class="button secondary prefix">Breyta</button>
            </div>
        </div>
    </form>
</div>

這是我的角度控制器

var PasswordCtrl=function($scope,registrationService, $http){

    $scope.changePassword=function(){
        console.log("current_password",password_form.uPass.value);
        $http({
            method: 'PUT', 
            url: '/skraning.json', 
            headers: {'X-CSRF-Token': $('meta[name="csrf-token"]').attr('content')},
            data: {"user[current_password]":$scope.user.password,"user[password]":$scope.user.newpassword}
        }).
        success(function(data, status, headers, config) {
            console.log("done",data);
        });
    };
};

傳遞的數據對象無效(用戶[current_password]和用戶[密碼]):嘗試使用引號

data: {"user['current_password']":$scope.user.password,"user['password']":$scope.user.newpassword}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM