我最近不得不在没有后端端点的情况下创建一个用户界面 (UI)。重点是使 UI 尽可能响应,以便用户可以知道操作何时正在进行。
这主要意味着当进行 AJAX 调用时,UI 应进行指示,并在调用完成时进行相应更新。
为了帮助 UI 的开发,我创建了一个函数来模拟 AJAX 调用。该函数能够:
TypeScript 代码如下(请参阅带有文档字符串的完整代码示例的要点):
export async function delay( timeout: number, probability?: number, result?: T ): Promise { return new Promise ((resolve, reject) => { setTimeout(() => { if (!probability || probability 1) { resolve(result); return; } const hit = Math.random(); if (hit 使用此功能:
async function handleButtonClick() { // Update the UI to show a loading indicator. try { // highlight-start // Make the call take 3 seconds, with a 10% chance of failure, // and return an array of users. const result = await delay(3000, 0.9, [ { email: '[email protected]', username: 'User 1', }, ]); // highlight-end // Update the UI when the call completes succesfully. } catch (err: any) { // Update the UI when the call fails. } }相同函数的 JavaScript 版本如下:
export async function delay(timeout, probability, result) { return new Promise((resolve, reject) => { setTimeout(() => { if ( !probability || typeof probability !== 'number' || probability 1 ) { resolve(result); return; } const hit = Math.random(); console.log(hit, probability); if (hit这篇文章首次发表于 cheehow.dev
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3