logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

js blob转json

// 定义JSON数据let val = { "name": "小花" };// 转换成字符串数组let string = JSON.stringify(val);// 转换成Blob类型数据let blobData = new Blob([string]);console.log(blobData) // 打印Blob结果: Blob { size: 17, type: "" }let read

#json#javascript#前端
Vant [Vue warn]: Failed to resolve directive: lazy

[Vue warn]: Failed to resolve directive: lazy遇到Vant自定义指令找不到的问题可以这样写,亲测有效import Vant,{Lazyload} from 'vant';import 'vant/lib/index.css';Vue.use(Vant);Vue.use(Lazyload);

#npm#html5
到底了