更新记录

1.0.0(2025-01-17)

  • 新版发布

平台兼容性

Vue2 Vue3
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)
    }
});

说明

  • iOS端同一设备不同app得到的结果不同(不同app指的是不同的bundleIdentifier),卸载重新安装结果不变。

  • Android端恢复出厂设置会改变、设备刷入自定义 ROM、通过 OTA 更新修改产品名称或遇到系统 Bug,获取到的值可能会发生变化。

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>

隐私、权限声明

1. 本插件需要申请的系统权限列表:

2. 本插件采集的数据、发送的服务器地址、以及数据用途说明:

插件不采集任何数据

3. 本插件是否包含广告,如包含需详细说明广告表达方式、展示频率:

暂无用户评论。

使用中有什么不明白的地方,就向插件作者提问吧~ 我要提问