1. # index.vue
    2. mounted() {
    3. Taro.request({
    4. url: "http://47.113.106.101:6505/api/movie/top250",
    5. data: {},
    6. header: {
    7. "content-type": "application/json",
    8. },
    9. success: (res) => {
    10. var movie = res.data.result;
    11. this.movie = movie;
    12. },
    13. });
    14. },