uniapp 对接高德实现搜索出现地址以及保存搜索记录_vue3uniapp集成高得地图搜索地址页面-程序员宅基地

技术标签: uni-app  

目录

一、准备工作:

1、申请高德key (下方链接直接点进去查看方法)

2、下载并安装微信小程序插件

3、在微信公众平台设置安全通讯域名

二、使用高德进行地址搜索:

三、获取当前定位地址:

四、保存搜索记录:

五、查看当前位置以及搜索地址之间距离

 在getLocation中获取当前位置经纬度

 在searchTips中获取搜索位置的经纬度 

总结代码


一、准备工作:

( 详细步骤:高德微信小程序入门指南

1、申请高德key (下方链接直接点进去查看方法)

获取高德key方式

2、下载并安装微信小程序插件

微信小程序插件 相关下载 

3、在微信公众平台设置安全通讯域名

微信公众平台

在 "开发"->"开发管理"->"开发设置" 中设置 request 合法域名,将 https://restapi.amap.com 中添加进去,如下图所示:

 

二、使用高德进行地址搜索:

HTML 结构 及定义相关的数据

<view class="select-input">
	<input v-model="keyword" @input="input" placeholder-class="input_holder" placeholder="请输入地点" />
	<uni-icons type="search" size="22" style="margin-right: 15rpx;" color="#D8D8D8"></uni-icons>
</view>
<view class="area-site">
			<ul>
				<li @click="checkdizhi(item)" v-for="(item,index) in searchResults" :key="item.id" class="position_ul">
					<view>
						<image src="@/static/images/task/icon-positioning.png"
							style="width: 16px;height: 16px;margin-right: 7.5px;"></image>
					</view>
					<view class="address">
						<text class="address-name">{
   {item.name}}</text>
						<text class="current-address">{
   {item.district}}{
   {item.address}}</text>
					</view>
				</li>
			</ul>
</view>
    import amapFile from '@/static/libs/amap-wx.130.js'; // 引入下载的组件js文件	
	export default {
		data() {
			return {
				timer: null, // 设置防抖
				myAmapFun: null, // 高德获取地址
				keyword: '', // 用户输入的关键词
				searchResults: [], // 搜索提示结果
				gaodekey: 'key', // 高德的key
				city: '北京',
				currentname: "", // 地址标题
				currentaddress: "", // 已经获取到当前的位置
			}
		},
    }
method 方法(searchTips)
			// menthods 方法
            // 搜索地址
			searchTips() {
				if (this.keyword === '') {
					this.searchResults = [] // 储存搜索结果数组
					return
				}
				const _this = this;
				// 发起搜索提示请求
				this.myAmapFun.getInputtips({
					keywords: this.keyword, // 搜索输入的关键字
					city: this.city, //必须填写搜索的城市
					success(data) {
						if (data && data.tips) {
							const arr = JSON.parse(JSON.stringify(data.tips))
							_this.searchResults = arr; // 储存搜索结果数组
						}
					},
				});
			},
			// 搜索函数防抖
			input(e) {
				clearTimeout(this.timer)
				this.timer = setTimeout(() => {
					this.searchTips()
				}, 500)
			},
            // 选择地址  点击搜索出来的地址
			checkdizhi(item) {
				// this.saveSearchHistory(item) // 保存历史记录 
			},

 CSS样式:(我的样式采用了scss 如果没用到就把嵌套的样式拿出来)

	// 搜索栏
	.area-header {
		background-color: #fff;
		padding: 22px 16px;

		.header-select {
			background-color: #F3F3F3;
			padding: 20rpx 5rpx;
			display: flex;
			align-items: center;

			// 左侧的城市名
			.select-region {
				padding-left: 5px;
				display: flex;
				align-items: center;
				width: 30%;
				justify-content: space-between;

				.region_text {
					font-size: 16px;
				}
			}

			// 右侧输入地址
			.select-input {
				display: flex;

				.input_holder {
					color: #D8D8D8;
					font-size: 16px;
				}
			}
		}
	}

	// 地址栏
	.position_ul {
		background-color: #fff;
		padding: 10px 20px;
		display: flex;
		align-items: center;
		border-bottom: 1px solid #F3F3F3;

		.address {
			width: 75%;

			.address-name {
				font-size: 16px;
			}

			.current-address {
				margin-top: 2px;
				font-size: 12px;
				color: #C0C4CC;
				display: flex;
				flex-direction: column;
			}
		}

		.distance_text {
			width: 5%;
			margin-left: 10px;
			font-size: 12px;
			color: #C0C4CC;
		}

		// 位置距离
		.site-distance {}
	}

三、获取当前定位地址:

首先配置  manifest.json 文件 获取微信小程序权限配置

打开manifest.json源码视图,确保小程序有相关配置

    /* 小程序特有相关 */
    "mp-weixin" : {
        "appid" : "id", // 自己的微信小程序id
        "setting" : {
            "urlCheck" : false,
            "es6" : true,
            "postcss" : true
        },
        "usingComponents" : true,
        "permission" : {
            "scope.userLocation" : {
                "desc" : "获取当前位置信息"
            }
        },
		"requiredPrivateInfos":["getLocation"] // 这个必须有,否则获取不到当前地址
    },
 method方法:(getLocation) 
// 获取当前位置
getLocation() {
	const _this = this;
	_this.myAmapFun = new amapFile.AMapWX({
		key: this.gaodekey
	});
	uni.showLoading({
		title: '获取信息中'
	});
	// 成功获取位置
	_this.myAmapFun.getRegeo({
		success: (data) => {
			console.log(data, '当前定位');
			_this.currentname = `${data[0].desc}`
			_this.currentaddress = `${data[0].regeocodeData.formatted_address}`;
			uni.hideLoading();
		},
		// 获取位置失败
		fail: (err) => {
			console.log(err, 'err')
			uni.showToast({
				title: "获取位置失败",
				icon: "error"
			})
			_this.currentname = "暂无当前位置信息"
		}
	});
},

四、保存搜索记录:

HTML 部分

<view class="history-content" v-if="searchResults.length === 0">
	<view class="current_position">
		<view>
			<image src="@/static/images/task/history.png" class="position_img"</image>
			<text class="position_text">历史记录</text>
		</view>
		<view @click="clearHistory" class="clear_history">清空</view>
	</view>
	<view v-if="historyList.length===0" class="history_none" style="padding: 20px;">暂无历史记录</view>
	<ul>
		<li @click="checkdizhi(item)" v-for="(item,index) in historyList" :key="item.id" class="position_ul">
			<view>
				<image src="@/static/images/task/icon-positioning.png" style="width: 16px;height: 16px;margin-right: 7.5px;"></image>
			</view>
			<view class="address">
				<text class="address-name">{
   {item.name}}</text>
				<text class="current-address">{
   {item.district}}{
   {item.address}}</text>
			</view>
			<view class="distance_text">
				<text>{
   {item.distance}}</text>
			</view>
		</li>
	</ul>
</view>

CSS样式 

	// 选择地点历史记录
	.history-content {

		// 无历史记录提示信息
		.history_none {
			background-color: #fff;
			padding: 20px 10px;
			color: #C0C4CC;
		}

		// 提示信息(当前位置/历史记录)
		.current_position {
			padding: 12px 22px;
			display: flex;
			justify-content: space-between;
			align-items: center;

			.position_img {
				width: 12px;
				height: 12px;
				margin-right: 7.5px;
				line-height: 21px;
				vertical-align: middle;
			}

			.position_text {
				font-size: 12px;
				color: #303133;
				line-height: 21px;
			}

			// 清空历史
			.clear_history {
				font-size: 12px;
				color: #2979FF;
			}
		}
	}

 JavaScript部分

// import amapFile from '@/static/libs/amap-wx.130.js'; // 引入下载的组件js文件
        data() {
			return {
				timer: null,
				myAmapFun: null, // 高德获取地址
				keyword: '', // 用户输入的关键词
				searchResults: [], // 搜索提示结果
				historyList: [], // 历史记录
				gaodekey: 'key', // 高德的key
				currentname: "", // 地址标题
				currentaddress: "", // 已经获取到当前的位置
				city: '北京',
				addresstype: '',
				currentlat: '', // 当前位置纬度
				currentlng: '', // 当前位置经度
				currentdistancec: '', // 当前位置距离

			}
		},
		onLoad() {
			this.myAmapFun = new amapFile.AMapWX({
				key: this.gaodekey
			});
			this.getLocation();
			this.historyList = JSON.parse(uni.getStorageSync('history') || '[]')
		},
method 方法(clearHistory、saveSearchHistory) 

// 清空搜索历史记录
clearHistory() {
	uni.showModal({
		title: '提示',
		content: '是否清空搜索历史',
		success: (res) => {
			this.historyList = []
			uni.setStorageSync('history', '[]')
		}
	})
},
// 保存搜索历史并持久化
saveSearchHistory(item) {
	this.historyList.unshift(item) // 把新数据添加到数组最后
	const string = this.historyList.map((index) => JSON.stringify(index)) // 把数组每一项转为字符串
	const removeDupList = Array.from(new Set(string)) //去重后再转为数组
	const result = removeDupList.map((item) => JSON.parse(item)) // 把数组每一项转为对象
	uni.setStorageSync('history', JSON.stringify(result)) // 存到storage中
},

五、查看当前位置以及搜索地址之间距离

 

定义公共方法  传入两个位置的经纬度  ( latitude 纬度  longitude 经度 )

function getDistances(lat1, lng1, lat2, lng2) {

    var radLat1 = rad(lat1);
    var radLat2 = rad(lat2);
    var a = radLat1 - radLat2;
    var b = rad(lng1) - rad(lng2);
    var s = 2 * Math.asin(Math.sqrt(Math.pow(Math.sin(a / 2), 2) +
        Math.cos(radLat1) * Math.cos(radLat2) * Math.pow(Math.sin(b / 2), 2)));
    s = s * 6378.137; // EARTH_RADIUS;
    // 输出为公里
    s = Math.round(s * 10000) / 10000;

    var distance = s;
    var distance_str = "";

    if (parseInt(distance) >= 1) {
        // distance_str = distance.toFixed(1) + "km";
        distance_str = distance.toFixed(2) + "km";
    } else {
        // distance_str = distance * 1000 + "m";
        distance_str = (distance * 1000).toFixed(2) + "m";
    }

    
/*    // 可以反具体距离 也可以反对象 自己选择
    let objData = {
        distance: distance,
        distance_str: distance_str
    } */
    return distance_str
}
export default getDistances
 在getLocation ( 上方定义的获取当前位置的方法 )中获取当前位置经纬度
// 获取当前位置
getLocation() {
	const _this = this;
	_this.myAmapFun = new amapFile.AMapWX({
		key: this.gaodekey
	});
	uni.showLoading({
		title: '获取信息中'
	});
	// 成功获取位置
	_this.myAmapFun.getRegeo({
		success: (data) => {
			console.log(data, '当前定位');
			_this.currentname = `${data[0].desc}`
			_this.currentaddress = `${data[0].regeocodeData.formatted_address}`;
 			_this.currentlat = `${data[0].latitude}` // 当前位置纬度
			_this.currentlng = `${data[0].longitude}` // 当前位置经度	
            uni.hideLoading();
		},
		// 获取位置失败
		fail: (err) => {
			console.log(err, 'err')
			uni.showToast({
				title: "获取位置失败",
				icon: "error"
			})
			_this.currentname = "暂无当前位置信息"
		}
	});
},
 在searchTips( 上方定义的搜索关键字显示地址的方法 ) 中获取搜索位置的经纬度 

引入js文件

import getDistances from '@/utils/getDistances';
// 搜索地址
searchTips() {
	if (this.keyword === '') {
		this.searchResults = []
		return
	}
	const _this = this;
	// 发起搜索提示请求
	this.myAmapFun.getInputtips({
		keywords: this.keyword,
		city: this.city, //必须填写搜索的城市
		success(data) {
			if (data && data.tips) {
				const arr = JSON.parse(JSON.stringify(data.tips))
				for (let i of arr) {
					const str = i.location
					if (str.length !== 0) {
						const dis = str.split(',')
						const distance = getDistances(_this.currentlat, _this.currentlng,dis[1], dis[0])
						i.distance = distance
					}
				}
				_this.searchResults = arr;
			}
		},
	});
},

总结代码

<template>
	<view>
		<view class="area-header">
			<view class="header-select">
				<view class="select-region">
					<image src="@/static/images/task/icon-positioning.png" style="width: 16px;height: 16px;"></image>
					<text class="region_text">{
   {city}}</text>
					<image src="@/static/images/task/arrowdown.png" style="width: 12px;height: 12px;"
						@click="changeCity"></image>
				</view>
				<view class="select-input">
					<text class="input_holder" style="margin: 0 10px;">|</text>
					<input v-model="keyword" @input="input" placeholder-class="input_holder" placeholder="请输入地点" />
					<uni-icons type="search" size="22" style="margin-right: 15rpx;" color="#D8D8D8"></uni-icons>
				</view>
			</view>
		</view>
		<view class="area-site">
			<ul>
				<li @click="checkdizhi(item)" v-for="(item,index) in searchResults" :key="item.id" class="position_ul">
					<view>
						<image src="@/static/images/task/icon-positioning.png"
							style="width: 16px;height: 16px;margin-right: 7.5px;"></image>
					</view>
					<view class="address">
						<text class="address-name">{
   {item.name}}</text>
						<text class="current-address">{
   {item.district}}{
   {item.address}}</text>
					</view>
					<view class="distance_text">
						<text>{
   {item.distance}}</text>
					</view>
				</li>
			</ul>
		</view>
		<view class="history-content" v-if="searchResults.length === 0">
			<view class="current_position">
				<view>
					<image src="@/static/images/task/positioning.png" class="position_img"></image>
					<text class="position_text">当前位置</text>
				</view>
			</view>
			<view class="position_ul">
				<view>
					<image src="@/static/images/task/icon-positioning.png"
						style="width: 16px;height: 16px;margin-right: 7.5px;"></image>
				</view>
				<view class="address">
					<text class="address-name" @click="checkcurrent(currentaddress)">{
   {currentname}}</text>
					<text class="current-address" @click="checkcurrent(currentaddress)">{
   {currentaddress}}</text>
				</view>
				<view class="distance_text">
					<text>{
   {currentdistancec}}</text>
				</view>
			</view>
		</view>
		<view class="history-content" v-if="searchResults.length === 0">
			<view class="current_position">
				<view>
					<image src="@/static/images/task/history.png" class="position_img"></image>
					<text class="position_text">历史记录</text>
				</view>
				<view @click="clearHistory" class="clear_history">清空</view>
			</view>

			<view v-if="historyList.length===0" class="history_none" style="padding: 20px;">
				暂无历史记录
			</view>
			<ul>
				<li @click="checkdizhi(item)" v-for="(item,index) in historyList" :key="item.id" class="position_ul">
					<view>
						<image src="@/static/images/task/icon-positioning.png"
							style="width: 16px;height: 16px;margin-right: 7.5px;"></image>
					</view>
					<view class="address">
						<text class="address-name">{
   {item.name}}</text>
						<text class="current-address">{
   {item.district}}{
   {item.address}}</text>
					</view>
					<view class="distance_text">
						<text>{
   {item.distance}}</text>
					</view>
				</li>
			</ul>
		</view>
	</view>
</template>

<script>
	import amapFile from '@/static/libs/amap-wx.130.js';
	import getDistances from '@/utils/getDistances';
	export default {
		data() {
			return {
				timer: null,
				myAmapFun: null, // 高德获取地址
				keyword: '', // 用户输入的关键词
				searchResults: [], // 搜索提示结果
				historyList: [], // 历史记录
				gaodekey: 'key', // 高德的key
				currentname: "", // 地址标题
				currentaddress: "", // 已经获取到当前的位置
				city: '北京',
				addresstype: '',
				currentlat: '', // 当前位置纬度
				currentlng: '', // 当前位置经度
				currentdistancec: '', // 当前位置距离

			}
		},
		onLoad(event) {
			this.myAmapFun = new amapFile.AMapWX({
				key: this.gaodekey
			});
			this.getLocation();
			this.historyList = JSON.parse(uni.getStorageSync('history') || '[]')
		},
		methods: {
			// 获取当前位置
			getLocation() {
				const _this = this;
				_this.myAmapFun = new amapFile.AMapWX({
					key: this.gaodekey
				});
				uni.showLoading({
					title: '获取信息中'
				});
				// 成功获取位置
				_this.myAmapFun.getRegeo({
					success: (data) => {
						console.log(data, '当前定位');
						_this.currentname = `${data[0].desc}`
						_this.currentaddress = `${data[0].regeocodeData.formatted_address}`;
						_this.currentlat = `${data[0].latitude}` // 当前位置纬度
						_this.currentlng = `${data[0].longitude}` // 当前位置经度
						_this.currentdistancec = getDistances(_this.currentlat, _this.currentlng, _this
							.currentlat, _this.currentlng, ) // 当前位置经度
						uni.hideLoading();
					},
					// 获取位置失败
					fail: (err) => {
						console.log(err, 'err')
						uni.showToast({
							title: "获取位置失败",
							icon: "error"
						})
						_this.currentname = "暂无当前位置信息"
					}
				});
			},
			// 搜索地址
			searchTips() {
				if (this.keyword === '') {
					this.searchResults = []
					return
				}
				const _this = this;
				// 发起搜索提示请求
				this.myAmapFun.getInputtips({
					keywords: this.keyword,
					city: this.city, //必须填写搜索的城市
					success(data) {
						if (data && data.tips) {
							const arr = JSON.parse(JSON.stringify(data.tips))
							for (let i of arr) {
								const str = i.location
								if (str.length !== 0) {
									const dis = str.split(',')
									const distance = getDistances(_this.currentlat,_this.currentlng, dis[1], dis[0])
									i.distance = distance
								}
							}
							_this.searchResults = arr;
						}
					},
				});
			},
			//搜索函数防抖
			input(e) {
				clearTimeout(this.timer)
				this.timer = setTimeout(() => {
					this.searchTips()
				}, 500)
			},
			// 选择地址
			checkdizhi(item) {
				this.saveSearchHistory(item) // 保存历史记录
				const address = item.district + item.address + item.name
				if (this.addresstype == "startAddress") {
					uni.$emit('startAddress', address)
					uni.navigateBack({
						delta: 1 //返回上一页
					})
				}
				if (this.addresstype == "endAddress") {
					uni.$emit('endAddress', address)
					uni.navigateBack({
						delta: 1 //返回上一页
					})
				}
			},
			// 点击当前位置选择地址
			checkcurrent(item) {
				if (this.addresstype == "startAddress") {
					uni.$emit('startAddress', item)
					uni.navigateBack({
						delta: 1 //返回上一页
					})
				}
				if (this.addresstype == "endAddress") {
					uni.$emit('endAddress', item)
					uni.navigateBack({
						delta: 1 //返回上一页
					})
				}
			},
			// 清空搜索历史记录
			clearHistory() {
				uni.showModal({
					title: '提示',
					content: '是否清空搜索历史',
					success: (res) => {
						this.historyList = []
						uni.setStorageSync('history', '[]')
					}
				})
			},
			// 保存搜索历史并持久化
			saveSearchHistory(item) {
				this.historyList.unshift(item) // 把新数据添加到数组最后
				const string = this.historyList.map((index) => JSON.stringify(index)) // 把数组每一项转为字符串
				const removeDupList = Array.from(new Set(string)) //去重后再转为数组
				const result = removeDupList.map((item) => JSON.parse(item)) // 把数组每一项转为对象
				uni.setStorageSync('history', JSON.stringify(result))
			},
			// 改变城市
			changeCity() {
				uni.navigateTo({
					url: `/pages/task/area/selectregion`
				});
			},
		}
	}
</script>

<style lang="scss">
	#container {
		width: 300px;
		height: 200px;
	}

	// 搜索栏
	.area-header {
		background-color: #fff;
		padding: 22px 16px;

		.header-select {
			background-color: #F3F3F3;
			padding: 20rpx 5rpx;
			display: flex;
			align-items: center;

			// 左侧的城市名
			.select-region {
				padding-left: 5px;
				display: flex;
				align-items: center;
				width: 30%;
				justify-content: space-between;

				.region_text {
					font-size: 16px;
				}
			}

			// 右侧输入地址
			.select-input {
				display: flex;

				.input_holder {
					color: #D8D8D8;
					font-size: 16px;
				}
			}
		}
	}

	// 地址栏
	.position_ul {
		background-color: #fff;
		padding: 10px 20px;
		display: flex;
		align-items: center;
		border-bottom: 1px solid #F3F3F3;

		.address {
			width: 75%;

			.address-name {
				font-size: 16px;
			}

			.current-address {
				margin-top: 2px;
				font-size: 12px;
				color: #C0C4CC;
				display: flex;
				flex-direction: column;
			}
		}

		.distance_text {
			width: 5%;
			margin-left: 10px;
			font-size: 12px;
			color: #C0C4CC;
		}

		// 位置距离
		.site-distance {}
	}

	// 选择地点历史记录
	.history-content {

		// 无历史记录提示信息
		.history_none {
			background-color: #fff;
			padding: 20px 10px;
			color: #C0C4CC;
		}

		// 提示信息(当前位置/历史记录)
		.current_position {
			padding: 12px 22px;
			display: flex;
			justify-content: space-between;
			align-items: center;

			.position_img {
				width: 12px;
				height: 12px;
				margin-right: 7.5px;
				line-height: 21px;
				vertical-align: middle;
			}

			.position_text {
				font-size: 12px;
				color: #303133;
				line-height: 21px;
			}

			// 清空历史
			.clear_history {
				font-size: 12px;
				color: #2979FF;
			}
		}
	}
</style>

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://blog.csdn.net/qq_47255575/article/details/134290507

智能推荐

nohub 和 & 在linux上不间断后台运行程序-程序员宅基地

文章浏览阅读3.1k次,点赞2次,收藏15次。长时间在服务器上运行深度学习代码,使用nohub 命令行 & 可以让代码不间断在后台运行_nohub

Policy-based Reinforcement learning_policy函数-程序员宅基地

文章浏览阅读4k次,点赞18次,收藏69次。强化学习这一章会讲基于策略的强化学习Value-Based Reinforcement Learning-DQN强化学习前言一、policy函数二、DQN2.1 游戏中agent的目标是什么?2.2 agent如何做决策?2.3 如何理解Q* 函数呢?2.5 DQN打游戏?三、如何训练DQN?3.1 TD算法3.2 TD算法训练DQN四、训练步骤六、总结前言说明一下:这是我的一个学习笔记,课程链接如下:最易懂的强化学习课程公众号:AI那些事一、policy函数我们回顾一下Acti_policy函数

project2016调配资源冲突-程序员宅基地

文章浏览阅读5.4k次,点赞9次,收藏26次。(1) Project查看资源负荷情况的方法和结果在工时类资源会存在资源过度分配(在同一个时间段给工时类资源分配的资源超出了他的最大单位)的情况,而成本类、材料类资源则不会有、查看资源负荷的方法有:在视图栏------资源图表如下图在这里我们可以看到每个资源的分配状况,如下图滚动鼠标滑轮就会出现不同的资源分配状况此时选择“资源”—“下一个资源过度分配处”如下图总结:甘特图、..._project2016调配资源冲突

推荐算法知识图谱模型(二):KGCN-程序员宅基地

文章浏览阅读235次。常用的KGE方法侧重于建模严格的语义相关性(例如,TransE和TransR假设头+关系=尾),这更适合于KG补全和链接预测等图内应用,而不是推荐。更自然、更直观的方法是直接设计一个图算法来利用KG结构。_图谱模型

ajax跨域与cookie跨域_一级域名 的cookie ajax 请求二级域名时获取cookie-程序员宅基地

文章浏览阅读389次。ajax跨域ajax跨域取数据(利用可以跨域加载js的原理 functioncallback(){ }这是需要返回这样一个js函数)ajax数据类型使用jsonp :如 ajax{ url:..._一级域名 的cookie ajax 请求二级域名时获取cookie

Flutter从0到1实现高性能、多功能的富文本编辑器(基础实战篇)_flutter 富文本-程序员宅基地

文章浏览阅读1.3k次,点赞2次,收藏2次。在上一章中,我们分析了一个富文本编辑器需要有哪些模块组成。在本文中,让我们从零开始,去实现自定义的富文本编辑器。注:本文篇幅较长,从失败的方案开始分析再到成功实现自定义富文本编辑器,真正的从0到1。— 完整代码太多, 文章只分析核心代码,需要源码请到代码仓库作为基础的富文本编辑器实现,我们需要专注于简单且重要的部分,所以目前只需定义标题、文本对齐、文本粗体、文本斜体、下划线、文本删除线、文本缩进符等富文本基础功能。//定义默认颜色​...///用户自定义颜色解析。_flutter 富文本

随便推点

购物车功能测试用例测试点整理思维导图方式_购物车测试点思维导图-程序员宅基地

文章浏览阅读8.2k次,点赞12次,收藏71次。_购物车测试点思维导图

使用matplotlib绘图实现动态刷新(动画)效果_matplotlib 动态刷新-程序员宅基地

文章浏览阅读4.8k次,点赞7次,收藏36次。最近在做四足的运动学仿真,因为这一段时间用python比较多,所以想直接用python做运动仿真,通过画图来展示步态和运动效果。了解了一下matplotlib库之后又参考了一些网上的博客,成功实现了绘图动态刷新的效果,类似动画效果。_matplotlib 动态刷新

Apache Kafka 可视化工具调研_kafka-console-ui-程序员宅基地

文章浏览阅读3k次。Apache Kafka 可视化工具调研_kafka-console-ui

如何编译部署独立专用服务端(Standalone Dedicated Server)【UE4】_ue4 独立服务器搭建-程序员宅基地

文章浏览阅读1.4k次。一、下载源码及编译原文链接首先需要unrealengine官网上注册并加入github开发组才有权限进入下面地址。https://github.com/EpicGames/UnrealEngine/tags注意:编译专用服务器,只能用源码编译版本的引擎,安装版本的引擎无法编译Server。打开页面后下载一个最新的release版本,解压出来后先运行Setup.bat,会自动下载资源..._ue4 独立服务器搭建

Hadoop 序列化机制_hadoop final-程序员宅基地

文章浏览阅读493次。序列化是指将结构化对象转化为字节流以便在网络上传输或者写到磁盘上进行永久存储的过程,反序列化是指将字节流转回结构化对象的逆过程序列化用于分布式处理的两大领域,进程间通信和永久存储。在Hadoop中,系统中多个节点上进程间的通信是通过“远程过程调用”(remote procedure call, RPC)实现的。RPC将消息序列化成二进制流后发送到远程节点,远程节点接着将二进制流饭序列化为原始..._hadoop final

tinymce富文本编辑器实现本地图片上传_tinymce images_upload_handler-程序员宅基地

文章浏览阅读5.7k次,点赞3次,收藏6次。在开发过程中使用tinymce富文本编辑器,发现他的图片上传默认是上传网络图片那么如何实现上传本地图片呢,上官网逛一圈,发现其实很简单在官网中找到下面这张图片,并且有相关的例子这里,我使用了自定义函数images_upload_handler (blobInfo, success, failure) { const url = 'uploadImg' ..._tinymce images_upload_handler