提交 ddddfb0f 编写于 作者: VK1688's avatar VK1688

屏蔽小程序端choose-location示例中的payload参数

上级 e097c22b
......@@ -18,7 +18,9 @@
<text class="tips">注意:\n1. Web和App需要正确配置地图服务商的Key并且保证Key的权限和余额足够,才能正常选择位置\n2. 若没有关联uniCloud空间,则只能全屏地图选点,不能根据POI选择位置\n3. payload参数会原样透传给uni-map-co,可用于用户鉴权</text>
<boolean-data :defaultValue="false" title="是否指定位置为天安门" @change="changeLocationBoolean"></boolean-data>
<boolean-data :defaultValue="false" title="是否携带keyword参数" @change="changeKeywordBoolean"></boolean-data>
<!-- #ifndef MP -->
<boolean-data :defaultValue="false" title="是否携带payload参数" @change="changePayloadBoolean"></boolean-data>
<!-- #endif -->
<button class="btn" type="primary" @tap="chooseLocation">选择位置</button>
<button class="btn" @tap="clear">清空</button>
<!-- #ifdef APP-IOS -->
......@@ -83,11 +85,13 @@
if (this.hoverKeyword) {
chooseLocationOptions.keyword = '公园'
}
// #ifndef MP
if (this.hoverPayload) {
chooseLocationOptions.payload = {
token: 'xxx'
}
}
// #endif
uni.chooseLocation(chooseLocationOptions)
// 自动化测试
setTimeout(() => {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册