1.Promise 用于解决异步编程 /* * 比如说 ajax 就是一个异步操作 , 之前的使用的回调函数的方式解决异步编程 * * $.ajax({ * url:’abc.com’, * success:function(res){...