嗨,我嘗試後與AnguarJs數據,但有一些issues.My js代碼無法發佈低於:採用了棱角分明JS
var app = angular.module('myApp', []);
app.constant('appUrl', 'http://localhost/zara/rest/');
/*---- categories fetch code -------*/
app.controller('myController',['$scope','$http','appUrl', function($scope, $http , appUrl) {
$scope.newName = "";
$scope.postForm = function() {
var data = $.param({
name: $scope.newName
});
$http.post("http://localhost/zara/rest/api_customerlogin.php", data).success(function(data, status) {
$scope.hello = data;
console.log(data);
});
};
}]);
我收到此錯誤TypeError: Cannot read property 'param' of undefined
當我改變代碼贊一個然後我得到這個錯誤。
<script>
angular.module('myApp', [])
.controller('myController', ['$scope', '$http', function($scope, $http) {
this.loginForm = function() {
var user_data='user_email=' +this.inputData.email+'&user_password='+this.inputData.password;
$http({
method: 'POST',
url: 'login.php',
data: user_data,
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
})
.success(function(data) {
console.log(data);
})
}
}]);
</script>
不能張貼到login.html的page.This是我在AnguarJs第一個項目這樣不是很familer與this.Thanks。
你有沒有嘗試在服務文件:app.serivce(「服務」,[$ HTTP,函數(){}]) – amrography
不,我剛試過的代碼與上述codes.How將服務工作與此? –
什麼是'$ .param'爲你做什麼?!,將你的數據更改爲'object'作爲'var data = {name:$ scope.newName}' – Maher