码迷,mamicode.com
首页 > 其他好文 > 详细

使用promise方式来获取网络数据

时间:2018-05-17 13:50:18      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:api   ons   ISE   post   获取   erro   new   使用   resolve   

获取网络数据

    let data = [];

    new Promise(function(resolve,reject){
        axios.post(‘api.php‘).then(function(response){
            resolve(response);
        },function(error){
            reject({data:[]});
        });
    }).then(function(resolve){
        console.log(‘数据来了‘);
        console.log(resolve.data);
        data = resolve.data;
    },function(reject){
        console.log(reject);
        data = reject.data;
    });

  

使用promise方式来获取网络数据

标签:api   ons   ISE   post   获取   erro   new   使用   resolve   

原文地址:https://www.cnblogs.com/wntd/p/9050251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!