码迷,mamicode.com
首页 >  
搜索关键字:promise    ( 2095个结果
09-Promise
Promise对象有以下两个特点。 (1)对象的状态不受外界影响。Promise对象代表一个异步操作,有三种状态:Pending(进行中)、Resolved(已完成,又称Fulfilled)和Rejected(已失败)。只有异步操作的结果,可以决定当前是哪一种状态,任何其他操作都无法改变这个状态。 ...
分类:其他好文   时间:2021-04-28 12:12:53    阅读次数:0
小程序 promise 异步操作
wx:key 相当于唯一标识,wx:for里常使用到,没使用会有警告 js是单线程的,同一时间只能处理同一个任务, promise: 以下3种状态 pending :初始状态 fulfilled 成功 rejected 失败 写法: new Promise((resolve //成功, reject ...
分类:微信   时间:2021-04-27 14:09:11    阅读次数:0
js中四种for循环
先说结论:遍历对象用for in 遍历数组用for of 不要用for in 遍历数组会出问题,实际中已经遇到了 function getAreaQueryGrid(res) { let features = new ol.format.GeoJSON().readFeatures(res); fo ...
分类:Web程序   时间:2021-04-26 13:46:30    阅读次数:0
taro封装request请求
export const request = (url, method = "GET", data) => { let _url = `${baseUrlPrefix}${url}`; return new Promise((resolve, reject) => { Taro.showLoadin ...
分类:其他好文   时间:2021-04-26 13:33:10    阅读次数:0
Javascript Promise技术
Simple explain: In ES2018 When the catch method is called with argument onRejected, the following steps are taken: Let promise be the this value. Retu ...
分类:编程语言   时间:2021-04-22 16:05:11    阅读次数:0
async和await解决回调地狱问题
注意点:使用函数封装Promise对象(可能是几个);定义执行封装Promise对象的函数的方法,使用async和await语法。 function test1() { return new Promise( (resolve,reject) => { setTimeout( () => { con ...
分类:其他好文   时间:2021-04-21 12:39:56    阅读次数:0
手写promise完成异常处理和状态只能够修改一次
8.处理 Promise 抛出的异常 <script src="./Promise.js"></script> <script type="text/javascript"> let p = new Promise((resolve, reject) => { throw 'error'; }) p ...
分类:其他好文   时间:2021-04-21 12:20:24    阅读次数:0
iOS promise
###三方框架 PromiseKit : https://github.com/mxcl/PromiseKit Bolts : https://github.com/BoltsFramework/Bolts-ObjC ###自定义demo: #import <Foundation/Foundatio ...
分类:移动开发   时间:2021-04-20 15:43:40    阅读次数:0
axios的使用
1.npm安装:npm install axios 2.axios发送请求后返回的是一个promise 3.axios发送get请求: import axios from 'axios'; axios.get('http://localhost:8080/getData?username=abc&i ...
分类:移动开发   时间:2021-04-20 14:53:50    阅读次数:0
Promise A+ 简单实现
写一个符合 Promise A+ 规范的 Promise 类型定义 // MyPromise.ts type resType = (value?: any) => void; type rejType = (reason?: any) => void; type executorType = (re ...
分类:其他好文   时间:2021-04-20 14:26:37    阅读次数:0
2095条   上一页 1 ... 3 4 5 6 7 ... 210 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!