我收到了可以正常运行的$ http请求
var data = {name: 'Bite'}
var headers = {
'Content-type': 'application/json',
'Authorization':localStorage.getItem('jwt_token')}
$http.post('/cats/api/', data, {headers: headers})
.then(
function(thing) {
console.log(thing);
}, function(error) {
console.log(error)
});
我想使用$ resource来处理请求。我已经使用“ GET”方法提出了一些简单的要求。但是无法理解如何使用“ POST”或“ PUT”数据和授权来创建请求。
我尝试过许多这样的皮带:
var app = angular.module('Qwe', ['ngResource']);
app.factory('Catsfactory', ['$resource', '$window',
function($resource, $window) {
return $resource('http://localhost:8000/cats/api/', {},
{
create: {
method: "POST",
cache: false,
isArray:false,
headers:{headers}
}
}
)
}]);
app.controller('CatCtrl', ['$scope', '$http', '$window','$resource', 'Catsfactory',
function($scope, $http, $window,$resource, Catsfactory) {
var qwe = Catsfactory.create(data);
qwe.$promise
.then(function(thing) {
console.log(thing);
}, function(error) {
console.log(error)
});
}])
但这不能解决