github文档地址
github文档地址
安装依赖
npm install validator --save
使用
非es6
var validator = require('validator');
es6
import validator from 'validator...
yekong
3年前 (2022-06-26)
喜欢
百度地图getBounds每隔一段时间字段名就会发生变化
如果每个一段时间就会变化的话,不可能让用户每次都跟着调整字段吧,搜索了一下发现原来是有获取的方法的
右上角经纬度 东北角
var bounds = that.map.getBounds()
co...
yekong
3年前 (2022-06-24)
喜欢
offset
使用offset实现偏移
var marker = new AMap.Marker({
position: [type.longitude, type.latitude],
map: that.map,
...
yekong
3年前 (2022-06-23)
喜欢
高德地图移除代码
that.map.remove(that.markerList);
添加marker
this.potList.forEach(item => {
// 根据type判断icon类型
// 1 隧道 2服务区 ...
yekong
3年前 (2022-06-23)
喜欢
高德地图 初始化时 设置中心点和级别无效,于是延迟1秒后重新设置。
that.map.setZoomAndCenter(13, [108.095907, 23.919379])
initMap() {
//仅供参考
var that = this...
yekong
3年前 (2022-06-23)
喜欢
宝塔更新后,发现使用ui界面添加的反向代理,并不能实现反向代理,反而以前添加过的代理还可以使用,于是将以前的配置文件代码复制进去修改对应的地址和路径后,反向代理实现了。记录一下,留待备用。
反向代理配置代码
proxy_pass 需要代理的地址
location 要代理的路径
#...
yekong
3年前 (2022-06-22)
喜欢
uniapp 微信小程序 scroll-view 实现自定义下拉刷新
uniapp scroll-view官方说明文档
uniapp scroll-view官方说明文档
代码
<template>
<view class="home">...
yekong
3年前 (2022-06-22)
喜欢
var dot = String(str).indexOf(".");
if(dot != -1){
var newStr = String(str).substring(dot+1,str);
console.log(newStr.length)...
yekong
3年前 (2022-06-22)
喜欢
文档地址
文档地址
中文文档地址
安装依赖
npm install v-viewer --save
main.js 引入
//预览图片
import Viewer from 'v-viewer'
import 'viewerjs/dist/viewer.css'
Vue.use...
yekong
3年前 (2022-06-20)
喜欢
运行实例
代码
<template>
<div class="echarts1" ref="echarts">
</div>
</template>
<script>...
yekong
3年前 (2022-06-15)
喜欢