收藏
回答

为什么总是报错,fetch is not a function?

const url = 'https://api.douban.com/v2/movie/in_theaters' 

fetch(url).then(function(response) {

     return  response.json();

     }).then(function (data) {

        that.setData({

          filmlist: data.subjects

        })

      })

    哪里错了呀?

fetch使用有什么需要注意的吗?

回答关注问题邀请回答
收藏

5 个回答

  • 胖虎🐯
    胖虎🐯
    2018-01-25

    fetch(url, {

       credentials: 'include',

                headers: {

                    'Accept': 'application/json, text/plain, */*'

                },

            });


    2018-01-25
    有用
    回复
  • Sigma
    Sigma
    2017-04-08

    小程序提供了发出请求的 API。

    2017-04-08
    有用
    回复
  • C1ear
    C1ear
    2017-04-07

    应该是“有些东西”

    2017-04-07
    有用
    回复
  • C1ear
    C1ear
    2017-04-07

    东西两个字也会屏蔽?

    2017-04-07
    有用
    回复
  • C1ear
    C1ear
    2017-04-07

    就是有些。。用不了,最简单的例子 alert()

    2017-04-07
    有用
    回复
登录 后发表内容