vue2 promise
时间: 2023-09-19 14:07:37 浏览: 97
Vue 2 does not have built-in support for Promises, but you can use the native JavaScript Promise object with Vue 2. Here's an example of how you can use Promises with Vue 2:
1. Define a method in your Vue component that returns a Promise. This method can contain asynchronous operations, such as making an API call.
```javascript
methods: {
fetchData() {
return new Promise((resolve, reject) => {
// Your asynchronous operation, e.g. making an API call
axios.get('/api/data')
.then(response => {
resolve(response.data);
})
.catch(error => {
reject(error);
});
});
}
}
```
2. In your component, you can call this method and handle the Promise result using the `then` and `catch` methods.
```javascript
this.fetchData().then(data => {
// Handle the successful result
}).catch(error => {
// Handle the error
});
```
By using Promises, you can handle asynchronous operations in a more organized and manageable way in your Vue 2 applications.
阅读全文