更新记录
1.0.0(2023-03-16)
下载此版本
v1.0.0上线
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
app-vue |
× |
× |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
× |
× |
× |
× |
× |
× |
× |
× |
× |
AS-Android-NFC
介绍
uniapp 安卓 NFC获取 ic卡 卡号或者内容
使用说明
<template>
<view class="content">
<view class="text-area">
<text class="title">AS-Android-NFC</text>
</view>
<view class="" style="color: red;">
返回参数:{{val.tagid?val.tagid:''}}
</view>
<button class="" @click="openNfc">读卡</button>
<!-- nfc 组件 -->
<uni-nfc ref="uniNfc" @changeNfc='changeNfc'></uni-nfc>
</view>
</template>
<script>
import uniNfc from "../../components/uni-nfc/uni-nfc.vue"
export default {
components: {
uniNfc
},
data() {
return {
val: {}
}
},
methods: {
//开启nfc检测
openNfc() {
this.$refs.uniNfc.open()
},
//检测nfc回调
changeNfc(val) {
console.log("ic卡返回数据")
console.log(val)
console.log("ic卡返回数据")
this.val = val
}
}
}
</script>
<style>
</style>
参与贡献
- Fork 本仓库
- 新建 Feat_xxx 分支
- 提交代码
- 新建 Pull Request
特技
- 使用 Readme_XXX.md 来支持不同的语言,例如 Readme_en.md, Readme_zh.md
- Gitee 官方博客 blog.gitee.com
- 你可以 https://gitee.com/explore 这个地址来了解 Gitee 上的优秀开源项目
- GVP 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目
- Gitee 官方提供的使用手册 https://gitee.com/help
- Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 https://gitee.com/gitee-stars/