this.encryptUserObject = function(userObj){
var newpassword = [];
var urlPost = '';
console.log(password);
urlPost = 'http:mysite.com/root/custome.svc/Encrypts'+ '/?' + "Phrase=test";
$.ajax({
url:urlPost,
type:"GET",
dataType:"json",
contentType: "application/json",
success: function(response){
return response;
},
error:function(res){
console.log("Bad thing happend! " + res.statusText);
}
});
}
これは私のクラスのメソッドの 1 つです。cosole.log
insuccess
メソッドが機能し、結果 (暗号化テキストの新しいパスワード) が表示されますがnewpassword
、コンソールに$.ajax
値が表示されません。
これを引き起こしている可能性のある考え。