简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
1.引用微信的SDKnpm install weixin-js-sdk --saveimport wx from 'weixin-js-sdk'export default {}2.关闭微信浏览器当前页面// 在需要的地方加入下面这行代码wx.closeWindow()作者:写bug的大叔链接:https://www.jianshu.com/p/d87...
问题描述: A页面跳转到B页面,在B页面进行了相关的操作之后,返回到A页面,A页面的数据没有刷新.具体实例:由于项目中使用了vue,使用了gulp和普通的页面跳转。并没有引入vue-router。所以不能使用 watch监控$router。微信公众号ios点击后退按钮,优选读取缓存,所以vue里的生命周期不会在进行调用。所以项目中执行隐藏分享qq,空间。等功能不被再次执行。原因分析:一...
一、 安装nginx 环境1.安装 brew (复制下面代码)/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"2.安装 nginxbrew install nginx3.启动nginxsudo nginx访问localhost:8080 可以正常访问代
importVuefrom'vue'constcerateScriptLoaded=url=>{returnnewPromise((resolve,reject)=>{constscript=document.createElement('script')script.src=urlscript.onl...
this.$refs.pageScroll1.offsetTop
1.使用window.onunload之类的APIwindow.onbeforeunload = function (e) {e = e || window.event;// 兼容IE8和Firefox 4之前的版本if (e) {e.returnValue = '关闭提示';}// Chrome, Safari, Firefox 4+, Ope...
a:hover 设置的样式在ios系统的浏览器内显示不出来,看来在iOS系统的移动设备中,需要在按钮元素或body/html上绑定一个touchstart事件才能激活:active状态。代码如下:document.body.addEventListener('touchstart',function(){});1或者给body添加ontouchstart<body ontou...
1. 只能输入整数数字, 且首位不能为0因为在 uni-app 中 输入框展示会不生效 所以 在@input事件中 加 延迟setTimeout(()=>{this.transferScoreInp = e.detail.value.replace(/[^0-9-]+/,'')if(this.transferScore...