$http.get(url)
.success(function(data){   console.log(data); }).error(function(err){
  console.log(err);
})

 post请求

$http({
  method:'POST',
  url:'http://192.168.1.107:8080/healthy/findAllColumn.do',
  data:{relation:17},
  headers:{'Content-Type': 'application/x-www-form-urlencoded'}  //重点,不要忘记漏写
}).then(function(data){
  console.log(data);
},function (err){
  console.log(err);
})

  

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-02
  • 2022-02-07
  • 2022-02-27
猜你喜欢
  • 2021-12-22
  • 2022-12-23
  • 2022-12-23
  • 2021-12-29
  • 2021-12-13
  • 2022-02-05
  • 2021-11-30
相关资源
相似解决方案