上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页
摘要: 一、什么是Promise? 1.Promise的结构: 2.Promise的三种状态: pending、fulfilled、rejected(未决定,履行,拒绝),同一时间只能存在一种状态,且状态一旦改变就不能再变。promise是一个构造函数,promise对象代表一项有两种可能结果(成功或失败) 阅读全文
posted @ 2019-01-21 11:45 Mr_R 阅读(197) 评论(0) 推荐(0) 编辑
摘要: 最近手贱,不小心把mbp仅有的管理员账号设置成了普通用户,想重新改回管理员,竟然需要用其他管理员账号去更改。简直 那个 啥 ~ 下面将提供创建一个新的管理员账号的方案 不仅适用于上述我出现的问题,也适用于那些忘记了登录账号密码的同学 ~ ▲ 解决方案 : 使用命令来重新建一个账户登录并更改原先的账号 阅读全文
posted @ 2019-01-21 09:03 Mr_R 阅读(3198) 评论(2) 推荐(2) 编辑
摘要: 注意要引入Clipboard template <div class="code-main top"> <div class="qrcode" ref="qrCodeUrl"></div> <p>{{extendUrl}}</p> <button class="copy" :data-clipboa 阅读全文
posted @ 2019-01-11 13:18 Mr_R 阅读(183) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title></title> <meta name="description" content=" 阅读全文
posted @ 2019-01-10 10:30 Mr_R 阅读(634) 评论(0) 推荐(0) 编辑
摘要: function getUrlParams (paramName) { var reg = new RegExp("[\?&]" + paramName + "=([^&]*)[&]?", "i"); var paramVal = window.location.search.match(reg); 阅读全文
posted @ 2019-01-08 14:12 Mr_R 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 最近测试html5页面,发现默认都允许用户缩放页面,或者在屏幕双击放大或缩小。即相当于这样设置 <meta name="viewport" content="width=device-width, initial-scale=1.0 user-scalable=yes" /> 如果要禁止此情形,修改 阅读全文
posted @ 2019-01-08 11:30 Mr_R 阅读(2053) 评论(0) 推荐(0) 编辑
摘要: 最重要的都圈出来了 阅读全文
posted @ 2019-01-05 11:50 Mr_R 阅读(874) 评论(0) 推荐(1) 编辑
摘要: App.vue: <div id="app"> <div class="content"> <transition :name="transitionName" :duration="{ enter: 500, leave: 0 }"> <router-view class="transitionB 阅读全文
posted @ 2019-01-02 10:10 Mr_R 阅读(1341) 评论(0) 推荐(0) 编辑
摘要: <transition :name="transitionName" :duration="{ enter: 500, leave: 0 }" > <router-view></router-view> </transition> 阅读全文
posted @ 2019-01-02 10:06 Mr_R 阅读(1129) 评论(0) 推荐(0) 编辑
摘要: beforeUpload (file) { var _this = this; var reader = new FileReader(); reader.readAsDataURL(file); reader.onload = function(e) { // 图片base64化 var newU 阅读全文
posted @ 2018-12-29 15:47 Mr_R 阅读(5494) 评论(0) 推荐(1) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 下一页