关于$http, #号。不是很明白。
写了一个http 请求。初学angularjs,在路由那一章跟着老师尝试了路由功能。重构了之前的项目的路由部分,然后浏览器链接里带#号,然后服务器端应该是能返回json的。可是chrome打印不出任何东西。
$scope.getToken = function(){
var url = "192.168.0.100:5000/api/auth";
$http.post(url,{username:'Drew',password:'048d319f88899fea2fa8b38d9c80c7b9cbe7f65a'})
.success(function(res){
if(res.err){
console.log(res);
}else{
console.log(res);
localStorage.setItem('token',res.access_token); //存储token到本地存储
console.log(res.access_token);
}
})
};