摘要:
阅读全文
摘要:
// 主要版本(截断更新 不兼容) 次要版本(功能新增) 修订版本(bug修复优化) // ~1.2.3 >=1.2.3 <1.3.0 锁定主要版本和次要版本 // ^1.2.3 >=1.2.3 <2.0.0 锁定主要版本 // >1.2.3 阅读全文
摘要:
1.绑定事件处理器:使得服务器端渲染的 HTML 元素变得可交互。比如,按钮的点击事件、表单的提交事件等。 2.重建应用状态:恢复或初始化客户端的 JavaScript 应用状态,使得客户端代码和服务器端渲染的一致。 3.同步 DOM:确保在客户端的 React(或其他前端框架)的虚拟 DOM(Vi 阅读全文
摘要:
class MyVideo { constructor(){ } } function singleton(className){ let ins = null const proxy = new Proxy(className,{ construct(target,args){ console.l 阅读全文
摘要:
import { onUnmounted } from "vue" // 分帧渲染 export function useDefer(maxCount = 100){ const count = ref(0) let raqId = null function updateFrame(){ coun 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
摘要:
function require(modulePath){ // 根据传递的模块路径获取模块id var moduleId = getModuleId(modulePath); if(caches[moduleId]){ return caches[moduleId]; } function _re 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document< 阅读全文
摘要:
通常认为子元素的百分比完全相对于直接父元素,但是,不总是相对于父元素的对应属性值。 子元素的 top 和 bottom 如果设置百分比,则相对于直接非 static 定位(默认定位)的父元素高度。 子元素的left 和 right 如果设置百分比,则相对于直接非 static 定位父元素的宽度。 子 阅读全文
摘要:
console.log(Object.is(+0,-0)) //false 但是控制台为true console.log(Object.is(NaN,NaN)) // true 但是控制台是false const uniqueArray = (arr)=>{ const result = [] ou 阅读全文