提交 2117a8ed 编写于 作者: zhaofengliang920817's avatar zhaofengliang920817

调整定位和支付示例|适配新增方法 uni.getProviderSync。

上级 8d6619e2
......@@ -84,13 +84,13 @@
jest_provider: '',
jest_type: 'wgs84' as GetLocationType,
jest_isAltitude: false,
jest_isGeocode: false,
jest_isGeocode: false,
jest_isHighAccuracy: false,
jest_altitude: -1000,
jest_longitude: 200,
jest_latitude: 100,
jest_address: '',
jest_errCode: 0,
jest_errCode: 0,
jest_complete: false
}
},
......@@ -102,31 +102,18 @@
methods: {
getProvider() {
// #ifdef APP
uni.getProvider({
service: "location",
success: (e) => {
console.log("location success:" + JSON.stringify(e), e.providerObjects.length);
let array = e.providerIds as string[]
array.forEach((value : string) => {
let locationProvider = e.providerObjects.find((item) : boolean => {
return item.id == value
})
if (locationProvider != null) {
this.providerList.push({
name: locationProvider.description,
id: locationProvider.id,
provider: e.providerObjects.find((item) : boolean => {
return item.id == locationProvider.id
})
} as LocationItem);
}
})
},
fail: (e) => {
console.log("获取定位服务商失败:", e);
}
});
let provider = uni.getProviderSync({
service: "location",
} as GetProviderSyncOptions)
console.log(provider)
provider.providerObjects.forEach((value : UniProvider) => {
this.providerList.push({
name: value.description,
id: value.id,
provider: value
} as LocationItem);
})
this.providerList.forEach((value, index) => {
if (value.id == "system") {
......@@ -203,8 +190,8 @@
},
// 仅用于自动化测试
jestGetLocation() {
this.jest_complete = false
jestGetLocation() {
this.jest_complete = false
this.jest_errCode = 0
uni.getLocation(({
// #ifdef APP
......@@ -214,17 +201,17 @@
altitude: this.jest_isAltitude,
isHighAccuracy: this.jest_isHighAccuracy,
geocode: this.jest_isGeocode,
success: (res) => {
if (res.address != null) {
this.jest_address = res.address!
success: (res) => {
if (res.address != null) {
this.jest_address = res.address!
}
this.jest_longitude = res.longitude
this.jest_latitude = res.latitude
this.jest_altitude = res.altitude
this.jest_altitude = res.altitude
this.jest_complete = true
},
fail: (err) => {
this.jest_errCode = err.errCode
this.jest_errCode = err.errCode
this.jest_complete = true
}
}));
......
......@@ -22,7 +22,7 @@
</view>
</view>
<button class="btn-get-provider" type="primary" @click="getProvider">getProvider</button>
<button class="btn-get-provider" type="primary" @click="getProvider">getProviderSync</button>
</view>
<!-- #ifdef APP -->
</scroll-view>
......
......@@ -22,40 +22,30 @@
}
},
onLoad: function () {
uni.getProvider({
let provider = uni.getProviderSync({
service: "payment",
success: (e) => {
console.log("payment success:" + JSON.stringify(e));
let array = e.providerIds as string[]
array.forEach((value : string) => {
switch (value) {
case 'alipay':
this.providerList.push({
name: '支付宝',
id: "alipay",
provider: e.providerObjects.find((item) : boolean => {
return item.id == 'alipay'
})
} as PayItem);
break;
case 'wxpay':
this.providerList.push({
name: '微信',
id: "wxpay",
provider: e.providerObjects.find((item) : boolean => {
return item.id == 'wxpay'
})
} as PayItem);
break;
default:
break;
}
})
},
fail: (e) => {
console.log("获取支付通道失败:", e);
} as GetProviderSyncOptions)
console.log(provider)
provider.providerObjects.forEach((value : UniProvider) => {
switch (value.id) {
case 'alipay':
this.providerList.push({
name: '支付宝',
id: "alipay",
provider: value
} as PayItem);
break;
case 'wxpay':
this.providerList.push({
name: '微信',
id: "wxpay",
provider: value
} as PayItem);
break;
default:
break;
}
});
})
},
methods: {
requestPayment(e : PayItem) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册