zoukankan      html  css  js  c++  java
  • JSONP跨域后回调函数中的参数使用

    有关于跨域的解决方案网上的资源十分丰富,我是参考这个博主的:https://blog.csdn.net/u014607184/article/details/52027879;

    这里的response是其他域的json格式的数据(我觉得是这样理解),在后台可以看到这个response的层次如下:

    然后在 handleResponse函数中使用了一段这样的代码

    上面的count,start和total的值都正常显示,到books时显示了

    然后分析books发现还有更深的层次

    之后一层一层地分析下来即可取得相应的数据的值:

    比如:alert(response.books[0].images.large);

    参考:https://www.cnblogs.com/nangong/p/3731611.html

              https://blog.csdn.net/u014607184/article/details/52027879

  • 相关阅读:
    快速排序
    冒泡排序
    桶排序
    Writer及其子类
    Reader及其子类
    OutputStream及其子类
    InputStream及其子类
    基础IO类和相关方法
    File类
    枚举
  • 原文地址:https://www.cnblogs.com/Guhongying/p/9692996.html
Copyright © 2011-2022 走看看