js-apis-nfcController.md 1.7 KB
Newer Older
1
# 标准NFC-Tag
刘嘉伟 已提交
2

3
本模块主要用于操作及管理NFC Tag。
刘嘉伟 已提交
4 5 6 7 8 9 10 11

> ![icon-note.gif](public_sys-resources/icon-note.gif) **说明:**
> 本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。


## **导入模块**

```
12
import tag from '@ohos.nfc.tag';
刘嘉伟 已提交
13 14 15
```


16
## tag.getNfcATag
刘嘉伟 已提交
17

18
getNfcATag(tagInfo: TagInfo): NfcATag
刘嘉伟 已提交
19

20
获取NFC A类型Tag对象,通过该对象访问NfcA技术类型的Tag。
刘嘉伟 已提交
21

22
**需要权限**:ohos.permission.NFC_TAG
刘嘉伟 已提交
23 24 25 26 27 28 29

**系统能力**:SystemCapability.Communication.NFC

**返回值:**

| **类型** | **说明** |
| -------- | -------- |
30
| NfcATag | NFC A类型Tag对象 |
刘嘉伟 已提交
31

32
## tag.getNfcBTag
刘嘉伟 已提交
33

34
getNfcBTag(tagInfo: TagInfo): NfcBTag
刘嘉伟 已提交
35

36
获取NFC B类型Tag对象,通过该对象访问NfcB技术类型的Tag。
刘嘉伟 已提交
37

38
**需要权限**:ohos.permission.NFC_TAG
刘嘉伟 已提交
39 40 41 42 43

**系统能力**:SystemCapability.Communication.NFC

**返回值:**

44 45 46
| **类型** | **说明**         |
| -------- | ---------------- |
| NfcBTag  | NFC B类型Tag对象 |
刘嘉伟 已提交
47

48
## tag.getNfcFTag
刘嘉伟 已提交
49

50
getNfcFTag(tagInfo: TagInfo): NfcFTag
刘嘉伟 已提交
51

52
获取NFC F类型Tag对象,通过该对象访问NfcF技术类型的Tag。
刘嘉伟 已提交
53

54
**需要权限**:ohos.permission.NFC_TAG
刘嘉伟 已提交
55 56 57 58 59

**系统能力**:SystemCapability.Communication.NFC

**返回值:**

60 61 62
| **类型** | **说明**         |
| -------- | ---------------- |
| NfcFTag  | NFC F类型Tag对象 |
刘嘉伟 已提交
63

64
## tag.getNfcVTag
刘嘉伟 已提交
65

66
getNfcVTag(tagInfo: TagInfo): NfcVTag
刘嘉伟 已提交
67

68
获取NFC V类型Tag对象,通过该对象访问NfcV技术类型的Tag。
刘嘉伟 已提交
69

70
**需要权限**:ohos.permission.NFC_TAG
刘嘉伟 已提交
71 72 73

**系统能力**:SystemCapability.Communication.NFC

74 75 76 77 78
**返回值:**

| **类型** | **说明**         |
| -------- | ---------------- |
| NfcVTag  | NFC V类型Tag对象 |