typescript .then
时间: 2023-11-08 17:04:15 浏览: 267
facebook-ts:用于TypeScript中Node.JS后端的Facebook API
TypeScript中的`.then`是Promise对象的方法之一,用于处理异步操作的结果。使用`.then`方法,可以在Promise对象成功完成时执行一个回调函数,该回调函数的参数是Promise对象的解析值。例如:
```typescript
fetch(url)
.then(response => response.json())
.then(data => console.log(data))
.catch(error => console.error(error));
```
在这个例子中,我们使用了`.then`方法处理了一个异步的HTTP请求。第一个`.then`方法解析了HTTP响应,将响应中的JSON数据解析为JavaScript对象。第二个`.then`方法将解析出的数据打印到控制台上。如果请求失败,我们使用`.catch`方法处理错误。
阅读全文