更新记录
1.0.0(2025-01-17)
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.6.8,Android:5.0,iOS:12,HarmonyNext:不支持 |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
鸿蒙元服务 |
× |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
特别提醒
- 购买本插件前,请先试用、请先试用、请先试用,并充分自测确认满足需求之后再行购买。虚拟物品一旦购买之后无法退款;
- 如有使用上的疑问、bug,可以进交流群联系作者;
- 作者可承接各种插件定制;
- 请在合法范围内使用,若使用本插件做非法开发,本方概不负责;
- 结合文档和示例代码使用;
插件使用文档 -- 试用需自定义基座
import {//引用插件
UniqueIdOptions,
getUniqueId
} from '@/uni_modules/yt-uts-deviceId'
//调用接口
getUniqueId({
success: (res) => {
console.log(res)
}
});
说明
uni-appx完整示例
<template>
<view class="content">
<image class="logo" @click="getid()" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{title}}</text>
</view>
</view>
</template>
<script>
import {
UniqueIdOptions,
getUniqueId
} from '@/uni_modules/yt-uts-deviceId'
export default {
data() {
return {
title: 'Hello'
}
},
methods: {
getid() {
getUniqueId({
success: (res) => {
console.log(res)
this.title = res
}
} as UniqueIdOptions);
}
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
</style>
uniapp完整示例
<template>
<view class="content">
<image class="logo" @click="getid()" src="/static/logo.png"></image>
<view class="text-area">
<text class="title">{{title}}</text>
</view>
</view>
</template>
<script>
import {
UniqueIdOptions,
getUniqueId
} from '@/uni_modules/yt-uts-deviceId'
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
},
methods: {
getid() {
getUniqueId({
success: (res) => {
console.log(res)
}
});
}
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
</style>