js获取选中文件的后缀名

let nameStr = file.name; let index = nameStr.lastIndexOf("."); let typeStr = nameStr.substring(index+1).toLowerCase(); //转化为小写......

2018/07/27 11:09
165
分享好友,朋友圈自定义分享链接无效

这个问题是微信6.5.6版本以后,修改了分享规则:分享的连接必须在公众号后台设定的js安全域名内

2018/07/23 20:40
292
登录后,后续请求接口没有带登录cookie可能原因

1.XMLHttpRequest.withCredentials没设置好,参考https://developer.mozilla.org/zh-CN/docs/Web/API/XMLHttpRequest/withCredentials......

在线压缩代码工具

https://tool.lu/js/

2018/06/21 15:02
208
vue-cli项目动态引用图片链接问题

将图片放到项目跟src统计的static文件夹下,然后动态引用路径如'static/xxx.png'即可,常用于保存在项目本地的默认图片

2018/06/19 17:22
324
iview table render的复杂示例

{ title: "操作", key: "operate", align: "center", render:(h,params) => { return ('div',[ h('Dropdown',{ ...

2018/05/30 19:18
2.6K
vue 通过拖拽更换两元素位置(同一个数组或列表)

<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <meta name="apple-mobile-web-app-title" content=""> <meta ...

2018/05/07 11:28
1.4W

没有更多内容

加载失败,请刷新页面