1. componentDidMount() {
    2. Taro.request({
    3. url: 'http://47.113.106.101:6505/api/movie/top250', //仅为示例,并非真实的接口地址
    4. header: {
    5. 'content-type': 'application/json' // 默认值
    6. },
    7. success: res => {
    8. console.log(res.data.result)
    9. this.setState({
    10. lists: res.data.result
    11. })
    12. }
    13. })
    14. }