获取网络数据 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 =…
通过Post请求方式,同步获取网络数据,一旦发送同步请求,程序将停止用户交互,直至服务器返回数据 在ViewController.m文件内的viewDidLoad函数添加一下测试代码 - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib. // 1.建立一个网址对象,指定请求数据的网址 NSURL *url = [NSUR…