上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 31 下一页
摘要: 下面是大神整理的demo,很实用,这里存一下备用,感谢大神! 此demo为大于1M对图片进行压缩上传 若小于1M则原图上传,可以根据自己实际需求更改。 demo源码如下 https://www.cnblogs.com/007sx/p/7583202.html 阅读全文
posted @ 2018-04-24 18:17 James2019 阅读(907) 评论(0) 推荐(1) 编辑
摘要: 前后分离 axios 接 api 跨域问题如图: 解决办法: 1. npm start 本地开发环境解决: 在webpack配置文件 /config/index.js 里找到 proxyTable 开启代理 changeOrigin:true, 2. npm run build 把 dist 放线上 阅读全文
posted @ 2018-04-22 08:16 James2019 阅读(19262) 评论(0) 推荐(1) 编辑
摘要: 百度编辑器 用node.js 做服务端 demo 大神已整理的 记录一下 以作参考 https://github.com/netpi/ueditor 1. 前端图片工具栏上传input file在这里: 搜索 ueditor.all.js文件里的 UE.plugin.register('simple 阅读全文
posted @ 2018-04-21 10:49 James2019 阅读(574) 评论(0) 推荐(0) 编辑
摘要: 1、对于普通数组(数组元素为数字或者字符串) var _testCopy = [1,2,3].concat();//拷贝数组(浅拷贝) 2、对于对象数组 (深拷贝) //形如var _objArr=[{"name":''weifeng"},{"name":"boy"}] var _testCopy 阅读全文
posted @ 2018-04-17 17:39 James2019 阅读(755) 评论(0) 推荐(0) 编辑
摘要: vue-cli 的webpack中已配置了less,但 package.json 中没有选项,为了方便开发中使用,需安装一下: 安装方式一: 安装less和less-loader,并记录到devDependencies中,因为这是我们在开发中使用的而非在生产中使用 安装方式二: 或直接在 packa 阅读全文
posted @ 2018-04-13 11:13 James2019 阅读(4960) 评论(0) 推荐(0) 编辑
摘要: 粘贴html的table表格会有间隔大,黑色边线,可以在: ueditor.all.js 里 找到以下处,修改里面的样式即可 . 阅读全文
posted @ 2018-04-09 11:07 James2019 阅读(2645) 评论(0) 推荐(0) 编辑
摘要: 百度编辑器很强,但有时候复制到html里时,会带有 body html head 等标签,切到视图时,内容都不见了 是因为白名单 解决办法: 我测的是1.4.3版本 在 ueditor.config.js 找到白名单 : ,whitList: { body: [], html: [], //...把 阅读全文
posted @ 2018-03-30 01:08 James2019 阅读(2497) 评论(0) 推荐(0) 编辑
摘要: Date.prototype.format = function(format) { var date = { "M+": this.getMonth() + 1, "d+": this.getDate(), "h+": this.getHours(), "m+": th... 阅读全文
posted @ 2018-03-28 21:05 James2019 阅读(312) 评论(0) 推荐(0) 编辑
摘要: 实现点击 用纯 js(非jquery) 下载文件到本地 自己尝试,加网上找了好久未果,如: window.open(url) location.href=url form表单提交 iframe 体验和浏览器兼容都不完美 还是博客园一兄弟给了方法,非常感谢! 阅读全文
posted @ 2018-03-21 14:38 James2019 阅读(8088) 评论(0) 推荐(0) 编辑
摘要: getBoundingClientRect用于获取某个元素相对于视窗的位置集合。集合中有top, right, bottom, left等属性。 1.语法:这个方法没有参数。 阅读全文
posted @ 2018-03-20 16:22 James2019 阅读(2413) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 31 下一页