使用 reqwest库,json,ajax传递api数据

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 reqwest库,json,ajax传递api数据相关的知识,希望对你有一定的参考价值。

reqwest数据格式:

<script>
var a = {};
reqwest({
url:‘http://swapi.co/api/people/1‘,
type:‘json‘,
method:‘get‘,
success:function(resp) {
a = resp
}
})
</script>

在js中,当函数中嵌套函数的时候,this此时指的不是实例本身,这是js的一个坑。
  

  methods:{
    getData:function () {
    var self = this;  
    reqwest({
      url:"http://swapi.co/api/people/?format=json",
      type:"json",
      method:"get",
      success:function (resp) {
      self.comments = resp.results
      }
        })
            }
                },
































以上是关于使用 reqwest库,json,ajax传递api数据的主要内容,如果未能解决你的问题,请参考以下文章

Rust reqwest示例json代码无法编译

Ajax - 使用Ajax传递Json数据

如何使用 Ajax 和 ASP.NET WebMethod 传递 JSON 对象

springMVC通过ajax传递参数list对象或传递数组对象到后台

spring mvc+ajax 实现json格式数据传递

使用 jQuery 的 $.ajax() 将多个 Json 对象作为数据传递