我們對angular js很陌生。Angular JS中的Http Post請求
我們嘗試使用http請求$http.get
它工作正常。但在後期要求它是創建一個問題,它涉及到成功和顯示錯誤的參數錯誤代碼103.
我們已經嘗試了使用$.ajax({}),
的AJAX請求,它工作正常。
我也粘貼我的代碼。
任何人都可以幫助我們嗎?
mainApp.controller('registrationCtrl', function($scope, $location, $http) {
$scope.registration = function() {
console.log("registration called");
var ws_url = "http://apparelinindia.com/selfiestandoff/WebServices/register";
var request = $http({
method: "post",
url: ws_url,
data: {
user_email: $scope.email,
user_password: $scope.password
},
dataType: 'json',
headers: {
'Content-Type': 'application/json'
}
});
request.success(function(data) {
console.log("Success" + data);
});
request.error(function(error) {
console.log("Success" + JSON.stringify(error));
});
};
});
嘗試用'method:「POST」'而不是? –
並移除'dataType:'json'' –