05 2021 档案
百度地图坐标转换(gps、google、百度坐标相互转换)
摘要:参考文献:http://www.360doc.com/content/15/0905/17/9261962_497072422.shtml
阅读全文
js 防止连点
摘要:var canClick = true;$("#button").click(function(){ if(!canClick ){ return false } canClick = false; // 一、请求接口时获取返回值后才可以点击 $.post(url,data,(res) => { c
阅读全文
vue中全局去除字符串两端空格
摘要:main.js中 Vue.prototype.Trim = function(str) { return str.replace(/(^\s*)|(\s*$)/g, ""); } 使用 let str = " 123456789 " Trim(str) // "123456789"
阅读全文
三种微信小程序获取用户头像昵称的方式
摘要:index.wxml <view class="container"> <view class="userinfo"> <block wx:if="{{canIUseOpenData}}" calss="userinfo-opendata"> <view class="userinfo-avatar
阅读全文