We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
第1583天 promise如何实现请求共享?
3+1官网
我也要出题
The text was updated successfully, but these errors were encountered:
`// 共享的 Promise 对象 const sharedDataPromise = fetchData();
// 第一个地方使用共享的数据 sharedUserDataPromise .then(data => { console.log('data in first place:', data); }) .catch(error => { console.error('Error in first place:', error); });
// 第二个地方使用共享的数据 sharedDataPromise .then(data => { console.log('data second place:', data); }) .catch(error => { console.error('Error in second place:', error); });`
Sorry, something went wrong.
No branches or pull requests
第1583天 promise如何实现请求共享?
3+1官网
我也要出题
The text was updated successfully, but these errors were encountered: