• 使用 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
          }
            })
                }
                    },




  • 相关阅读:
    shell 的多进程
    shell 按行读取文件的内容
    2>&1的意思
    >/dev/null 2>&1
    js 变量作用域
    Premiere Pro 中的键盘快捷键
    premiere pro 2019 mac 破解
    js 空语句
    js 数组原型
    js 奇偶判断
  • 原文地址:https://www.cnblogs.com/a666/p/7118045.html
Copyright © 2020-2023  润新知