• 2024-10-09[Javascript] Using Proxy to observe the object
    constobj={a:1,b:2,c:{d:1,e:2,},};functionisObject(val){returnval!==null&&typeofval==="object";}functionobserve(obj){constproxy=newProxy(obj,{get(target,key){constv
  • 2024-06-15officegen操作word文档和xlsx表格
    officegen操作word文档constofficegen=require('officegen')constfs=require('fs')//创建一个空的Word对象:letdocx=officegen('docx')//Officegen在完成生成docx文档后调用此函数:docx.on('finalize',function(written){console.log(