博客 / 列表

angdh - yield 模擬 async/await

您説得對!Generator 的 yield 配合執行器確實可以模擬 await 的效果。讓我用一個更直觀的例子展示這種對應關係。 Generator 模擬 async/await // 模擬異步函數 function delay(ms, value) { return new Promise(resolve = setTimeout(() = re

語法糖 , 函數返回 , 前端開發 , 錯誤處理 , Javascript

angdh - akm SharedWorker

debugger;;; // 主要功能模塊 const infoCollectors = { networkInfo: function() { // 收集網絡連接信息 if (!('connection' in navigator)) return null; const conn = n

數據 , 發送消息 , Css , 前端開發 , HTML

angdh - js yield Generator

// 定義Generator函數 function* simpleGenerator() { debugger; console.log('開始執行'); debugger; yield '第一次暫停'; debugger; console.log('恢復執行'); debugger;

MySQL , 開發 , 數據庫

angdh - 用localStorage 模擬SharedWorker

!DOCTYPE html html lang="zh-CN" head meta charset="UTF-8" meta name="viewport" content="width=device-width, initial-scale=1.0" titleSharedWorker 與 Worker 的區別/title style

f5 , 標籤頁 , Css , 2d , 前端開發 , HTML