前端
Martin Wu
这个作者很懒,什么都没留下…
展开
-
React 入门学习记录
### 安装- 需要 Node >= 8.10 和 npm >= 5.6。```npx create-react-app my-first-react```- 注意:第一行的 npx 不是拼写错误 —— 它是 npm 5.2+ 附带的 package 运行工具。### 如何阅读文档- 官方文档: https://react.docschina.org/docs/hello-world.html- 你可以按照侧边导航栏中显示的顺序阅读浏览 “核心概念” 的指南章节。以了解 Rea原创 2020-09-23 17:37:09 · 93 阅读 · 0 评论 -
element 组件upload form 验证
<el-form ref="ruleForm" :model="ruleForm" :rules="rules" label-width="80px" style="width:600px"><el-form-item label="文件" ref="excel" prop="file" ><el-upload:action="uploadUrl":...原创 2019-08-12 14:07:03 · 1891 阅读 · 0 评论 -
javascript 获取接口返回的二进制blob 数据,后再转为对应mime 文件
src/config/util.jsexport default{ blobTofile(res, filename = null) { const blob = new Blob([res.data], { type: res.headers['content-type'] }); const blobURL = window.URL.create...原创 2019-08-12 14:40:51 · 1462 阅读 · 0 评论