使用vue-element-admin 组件vue-ueditor-wrap 参考 https://github.com/HaoChuan9421/vue-ueditor-wrap 根据vue-ueditor-wrap的描述(前往github查看),在components中创建组件Ueditor 问题描述:在elem...
代码片段
单独调用ueditor的附件上传功能(二)自定义图片上传页面,图片按名称顺序上传
单独调用ueditor的附件上传功能(一) 需要单独使用ueditor的图片上传功能,同时调整上传的页面样式,但是又不想改变其他已经在使用的ueditor编辑器图片上传页面,通过阅读ueditor.all.js 发现有 iframeUrlMap...
禁止浏览器自动填充账号密码 input password
浏览器记住保存了登陆账号密码,每当页面里面使用input type="password"的时候,用户名和密码就被默认填写进去了 在input前 多加两个input type="text" ,type="password"可以代替被填充,但是对这两个input...
OpenLayers绘制区域Polygon及点击菜单弹窗
http://openlayers.org/ 使用版本 v4.2.0 最后实现效果 下载demo <!DOCTYPE html> <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">...
单独调用ueditor的附件上传功能 (一)
使用ueditor 的附件上传工具 window.UEDITOR_CONFIG.serverUrl = "XXX" ; //请求路径 var toolbars = [[ 'attachment' //单独使用附件上传功能 ]]; var ue = UE.getEditor('...
DIRECTORY_SEPARATOR window linux 上的差异
在 window 是 "\" 在 linux 是 "/"
apache 经过代理分发后 php获取客户端ip地址
<VirtualHost *:80> ServerAlias XXX.XXX.com ProxyPass / http://10.26.21.73/ ProxyPassReverse / http://10.26.21.73/ </VirtualHost> php $_SERVER['HTTP_HOST']在客户的环境里,取得的...
php 命名空间namespace 类文件自动载入
下载使用 lcobucci/jwt,里面的类文件通过Composer自动加载功能,所使用的电脑并没有安装Composer 改为使用 spl_autoload_register 来 注册自动加载 ,对有使用到的命名空间 自动加载对应的类文件 $classMap ...
Android 通过反射 getDeclaredField 设置按钮的监听事件
使用阿里云的UI播放器,全屏放大后点击 “< ” 返回按钮会缩小会小屏播放,再点击一次才会结束当前activity 进入布局AliyunVodPlayerView看到的返回按钮相关的代码是 private com.aliyun.vodplayerview.c.a....