标准NFC-Tag Nfc 技术

2024-01-23 17:12 更新

本模块主要用于采用不同Nfc技术的Tag的读写操作。

说明

本模块首批接口从API version 7开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。

导入模块

  1. import tag from '@ohos.nfc.tag';

NfcATag

NfcATag 提供 NFC-A(ISO 14443-3A)技术的属性和I/O操作的访问,继承自TagSession

TagSession是所有NFC Tag技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见TagSession

以下是NfcATag的独有接口。

NfcATag.getSak

getSak(): number

获取NFC-A标签的SAK值。

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

返回值:

类型说明
numberNfcA 标签的SAK值,十六进制表示,范围是0x00~0xFF。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'nfcA' correctly.
  3. let sak = nfcA.getSak();
  4. console.log("nfcA sak: " + sak);

NfcATag.getAtqa

getAtqa(): number[]

获取NFC-A标签的Atqa值。

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

返回值:

类型说明
number[]NfcA 标签的Atqa值,每个number十六进制表示,范围是0x00~0xFF。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'nfcA' correctly.
  3. let atqa = nfcA.getAtqa();
  4. console.log("nfcA atqa: " + atqa);

NfcBTag

NfcBTag 提供对NFC-B(ISO 14443-3B)技术的属性和I/O操作的访问,继承自TagSession。

TagSession是所有NFC Tag技术类型的基类,提供建立连接和发送数据等共同接口。具体请参见TagSession

以下是NfcBTag的独有接口。

NfcBTag.getRespAppData

getRespAppData(): number[]

获取标签的应用程序数据。

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

返回值:

类型说明
number[]NfcB 标签的应用程序数据,每个number十六进制表示,范围是0x00~0xFF。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'nfcB' correctly.
  3. let respAppData = nfcB.getRespAppData();
  4. console.log("nfcB respAppData: " + respAppData);

NfcBTag.getRespProtocol

getRespProtocol(): number[]

获取标签的协议信息。

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

返回值:

类型说明
number[]NfcB 标签的协议信息,每个number十六进制表示,范围是0x00~0xFF。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'nfcB' correctly.
  3. let respProtocol = nfcB.getRespProtocol();
  4. console.log("nfcB respProtocol: " + respProtocol);

NfcFTag

NfcFTag 提供对NFC-F(JIS 6319-4)技术的属性和I/O操作的访问,继承自TagSession。

TagSession是所有NFC Tag技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见TagSession

以下是NfcFTag的独有接口。

NfcFTag.getSystemCode

getSystemCode(): number[]

从标签实例获取系统代码。

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

返回值:

类型说明
number[]NfcF 标签的系统代码,每个number十六进制表示,范围是0x00~0xFF。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'nfcF' correctly.
  3. let systemCode = nfcF.getSystemCode();
  4. console.log("nfcF systemCode: " + systemCode);

NfcFTag.getPmm

getPmm(): number[]

从标签实例获取PMm(由IC代码和制造商参数组成)。

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

返回值:

类型说明
number[]NfcF 标签的PMm信息,每个number十六进制表示,范围是0x00~0xFF。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'nfcF' correctly.
  3. let pmm = nfcF.getPmm();
  4. console.log("nfcF pmm: " + pmm);

NfcVTag

NfcVTag 提供对NFC-V(ISO 15693)技术的属性和I/O操作的访问,继承自TagSession。

TagSession是所有NFC Tag技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见TagSession

以下是NfcVTag的独有接口。

NfcvTag.getResponseFlags

getResponseFlags(): number

从标签实例实例获取响应标志。

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

返回值:

类型说明
numberNfcV 标签的响应标志,十六进制表示,范围是0x00~0xFF。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'nfcV' correctly.
  3. let responseFlags = nfcV.getResponseFlags();
  4. console.log("nfcV responseFlags: " + responseFlags);

NfcvTag.getDsfId

getDsfId(): number

从标签实例实例获取数据存储格式标识符(DSFID)。

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

返回值:

类型说明
numberNfcV 标签的数据存储格式标识符,十六进制表示,范围是0x00~0xFF。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'nfcV' correctly.
  3. let dsfId = nfcV.getDsfId();
  4. console.log("nfcV dsfId: " + dsfId);

IsoDepTag9+

IsoDepTag 提供对ISO-DEP(ISO 14443-4)技术的属性和I/O操作的访问,继承自TagSession。

TagSession是所有NFC Tag技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见TagSession

以下是IsoDepTag的独有接口。

IsoDepTag.getHistoricalBytes9+

getHistoricalBytes(): number[]

获取标签的历史字节,针对基于NfcA通信技术的IsoDep卡片。

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

返回值:

类型说明
number[]IsoDepTag 标签的历史字节,每个number十六进制表示,范围是0x00~0xFF。如果该IsoDep类型Tag是基于NfcB技术的,则该返回值为空。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'isoDep' correctly.
  3. let historicalBytes = isoDep.getHistoricalBytes();
  4. console.log("isoDep historicalBytes: " + historicalBytes);

IsoDepTag.getHiLayerResponse9+

getHiLayerResponse(): number[]

获取标签的更高层响应字节,针对基于NfcB通信技术的IsoDep卡片。

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

返回值:

类型说明
number[]IsoDepTag 标签的更高层响应字节,每个number十六进制表示,范围是0x00~0xFF。如果该IsoDep类型Tag是基于NfcA技术的,则该返回值为空。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'isoDep' correctly.
  3. let hiLayerResponse = isoDep.getHiLayerResponse();
  4. console.log("isoDep hiLayerResponse: " + hiLayerResponse);

IsoDepTag.isExtendedApduSupported9+

isExtendedApduSupported(): Promise<boolean>

检查是否支持扩展的APDU,使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

返回值:

类型说明
Promise<boolean>检查结果,true: 支持, false: 不支持。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'isoDep' correctly.
  3. // connect the tag at first if not connected.
  4. if (!isoDep.isTagConnected()) {
  5. if (!isoDep.connectTag()) {
  6. console.log("isoDep connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. isoDep.isExtendedApduSupported().then((response) => {
  12. console.log("isoDep isExtendedApduSupported Promise response: " + response);
  13. }).catch((err)=> {
  14. console.log("isoDep isExtendedApduSupported Promise err: " + err);
  15. });
  16. } catch (busiError) {
  17. console.log("isoDep isExtendedApduSupported Promise busiError: " + busiError);
  18. }

IsoDepTag.isExtendedApduSupported9+

isExtendedApduSupported(callback: AsyncCallback<boolean>): void

检查是否支持扩展的APDU,使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
callbackAsyncCallback<boolean>回调函数,true: 支持, false: 不支持。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'isoDep' correctly.
  3. // connect the tag at first if not connected.
  4. if (!isoDep.isTagConnected()) {
  5. if (!isoDep.connectTag()) {
  6. console.log("isoDep connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. isoDep.isExtendedApduSupported((err, response)=> {
  12. if (err) {
  13. console.log("isoDep isExtendedApduSupported AsyncCallback err: " + err);
  14. } else {
  15. console.log("isoDep isExtendedApduSupported AsyncCallback response: " + response);
  16. }
  17. });
  18. } catch (busiError) {
  19. console.log("isoDep isExtendedApduSupported AsyncCallback busiError: " + busiError);
  20. }

NdefMessage9+

NdefMessage.getNdefRecords9+

getNdefRecords(): tag.NdefRecord[]

获取NDEF消息中的所有记录。

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

返回值:

类型说明
tag.NdefRecord[]NDEF标签的Record列表,详见NDEF技术规范《NFCForum-TS-NDEF_1.0》。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // Obtains ndefMessage from tag.ndef.createNdefMessage or ndefTag.getNdefMessage.
  3. // var ndefMessage = tag.ndef.createNdefMessage(...);
  4. // var ndefMessage = ndefTag.getNdefMessage();
  5. let ndefRecords = ndefMessage.getNdefRecords();
  6. console.log("ndef ndefRecords number: " + ndefRecords.length);

NdefTag9+

提供对已格式化为NDEF的NFC标签的数据和操作的访问,继承自TagSession。

TagSession是所有NFC Tag技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见TagSession

以下是NdefTag的独有接口。

NdefTag.getNdefTagType9+

getNdefTagType(): tag.NfcForumType

获取NDEF标签的类型。

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

返回值:

类型说明
tag.NfcForumTypeNDEF标签类型,包括NFC FORUM TYPE 1/2/3/4等。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. let ndefTagType = ndefTag.getNdefTagType();
  4. console.log("ndef ndefTagType: " + ndefTagType);

NdefTag.getNdefMessage9+

getNdefMessage(): NdefMessage

获取发现NDEF标签时,从标签读取的Message。

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

返回值:

类型说明
NdefMessageNDEF标签的Message,详见NDEF技术规范《NFCForum-TS-NDEF_1.0》。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. let ndefMessage = ndefTag.getNdefMessage();
  4. console.log("ndef ndefMessage: " + ndefMessage);

NdefTag.isNdefWritable9+

isNdefWritable(): boolean;

检查NDEF标签是否可写。在调用写数据接口前,需要先判断是否支持写操作。

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

返回值:

类型说明
boolean检查结果,true: 可写, false: 不可写。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. var isWritable = ndefTag.isNdefWritable();
  4. console.log("ndef isNdefWritable: " + isWritable);

NdefTag.readNdef9+

readNdef(): Promise<NdefMessage>

读取标签上的NDEF消息,使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

返回值:

类型说明
Promise<NdefMessage>以Promise形式返回从NDEF标签中读取到的Message数据对象。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. // connect the tag at first if not connected.
  4. if (!ndefTag.isTagConnected()) {
  5. if (!ndefTag.connectTag()) {
  6. console.log("ndefTag connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. ndefTag.readNdef().then((ndefmessage) => {
  12. console.log("ndef readNdef Promise ndefmessage: " + ndefmessage);
  13. }).catch((err)=> {
  14. console.log("ndef readNdef Promise err: " + err);
  15. });
  16. } catch (busiError) {
  17. console.log("ndef readNdef Promise catched busiError: " + busiError);
  18. }

NdefTag.readNdef9+

readNdef(callback: AsyncCallback<NdefMessage>): void

读取标签上的NDEF消息,使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
callbackAsyncCallback<NdefMessage>回调函数,返回从NDEF标签中读取到的Message信息。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. // connect the tag at first if not connected.
  4. if (!ndefTag.isTagConnected()) {
  5. if (!ndefTag.connectTag()) {
  6. console.log("ndefTag connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. ndefTag.readNdef((err, ndefmessage)=> {
  12. if (err) {
  13. console.log("ndef readNdef AsyncCallback err: " + err);
  14. } else {
  15. console.log("ndef readNdef AsyncCallback ndefmessage: " + ndefmessage);
  16. }
  17. });
  18. } catch (busiError) {
  19. console.log("ndef readNdef AsyncCallback catched busiError: " + busiError);
  20. }

NdefTag.writeNdef9+

writeNdef(msg: NdefMessage): Promise<void>;

将NDEF Messsage数据对象写入标签,使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
msgNdefMessageNDEF Message数据对象。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. // ndefMessage created from raw data, such as:
  4. let ndefMessage = tag.ndef.createNdefMessage([0xD1, 0x01, 0x03, 0x54, 0x4E, 0x46, 0x43]); // MUST can be parsed as NDEF Record.
  5. // or ndefMessage created from tag.ndef.createNdefMessage(ndefRecords: NdefRecord[])
  6. // connect the tag at first if not connected.
  7. if (!ndefTag.isTagConnected()) {
  8. if (!ndefTag.connectTag()) {
  9. console.log("ndefTag connectTag failed.");
  10. return;
  11. }
  12. }
  13. try {
  14. ndefTag.writeNdef(ndefMessage).then(() => {
  15. console.log("ndef writeNdef Promise success.");
  16. }).catch((err)=> {
  17. console.log("ndef writeNdef err: " + err);
  18. });
  19. } catch (busiError) {
  20. console.log("ndef writeNdef Promise catch busiError: " + busiError);
  21. }

NdefTag.writeNdef9+

writeNdef(msg: NdefMessage, callback: AsyncCallback<void>): void

将NDEF Message数据对象写入此标签,使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
msgNdefMessageNDEF Message数据对象。
callbackAsyncCallback<void>回调函数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. // ndefMessage created from raw data, such as:
  4. let ndefMessage = tag.ndef.createNdefMessage([0xD1, 0x01, 0x03, 0x54, 0x4E, 0x46, 0x43]); // MUST can be parsed as NDEF Record.
  5. // or ndefMessage created from tag.ndef.createNdefMessage(ndefRecords: NdefRecord[])
  6. // connect the tag at first if not connected.
  7. if (!ndefTag.isTagConnected()) {
  8. if (!ndefTag.connectTag()) {
  9. console.log("ndefTag connectTag failed.");
  10. return;
  11. }
  12. }
  13. try {
  14. ndefTag.writeNdef(ndefMessage, (err)=> {
  15. if (err) {
  16. console.log("ndef writeNdef AsyncCallback err: " + err);
  17. } else {
  18. console.log("ndef writeNdef AsyncCallback success.");
  19. }
  20. });
  21. } catch (busiError) {
  22. console.log("ndef writeNdef AsyncCallback catch busiError: " + busiError);
  23. }

NdefTag.canSetReadOnly9+

canSetReadOnly(): boolean

检查NDEF标签是否可以设置为只读。

需要权限: ohos.permission.NFC_TAG

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

返回值:

类型说明
booleantrue: NDEF标签可设置为只读, false: NDEF标签不可设置为只读。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. var canSetReadOnly = ndefTag.canSetReadOnly();
  4. console.log("ndef canSetReadOnly: " + canSetReadOnly);

NdefTag.setReadOnly9+

setReadOnly(): Promise<void>

将NDEF标签设置为只读,使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. // connect the tag at first if not connected.
  4. if (!ndefTag.isTagConnected()) {
  5. if (!ndefTag.connectTag()) {
  6. console.log("ndefTag connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. ndefTag.setReadOnly().then(() => {
  12. console.log("ndef setReadOnly Promise success.");
  13. }).catch((err)=> {
  14. console.log("ndef setReadOnly Promise err: " + err);
  15. });
  16. } catch (busiError) {
  17. console.log("ndef setReadOnly Promise catch busiError: " + busiError);
  18. }

NdefTag.setReadOnly9+

setReadOnly(callback: AsyncCallback<void>): void

将NDEF标签设置为只读,使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
callbackAsyncCallback<void>回调函数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. // connect the tag at first if not connected.
  4. if (!ndefTag.isTagConnected()) {
  5. if (!ndefTag.connectTag()) {
  6. console.log("ndefTag connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. ndefTag.setReadOnly((err)=> {
  12. if (err) {
  13. console.log("ndef setReadOnly AsyncCallback err: " + err);
  14. } else {
  15. console.log("ndef setReadOnly AsyncCallback success.");
  16. }
  17. });
  18. } catch (busiError) {
  19. console.log("ndef setReadOnly AsyncCallback catch busiError: " + busiError);
  20. }

NdefTag.getNdefTagTypeString9+

getNdefTagTypeString(type: tag.NfcForumType): string

将NFC论坛类型,转换为NFC论坛中定义的字符串描述。

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

参数:

参数名类型必填说明
typetag.NfcForumTypeNDEF标签类型,包括NFC FORUM TYPE 1/2/3/4等。

返回值:

类型说明
stringNFC论坛类型的字符串描述。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefTag' correctly.
  3. try {
  4. let ndefTypeString = ndefTag.getNdefTagTypeString(tag.NFC_FORUM_TYPE_1);
  5. console.log("ndef ndefTypeString: " + ndefTypeString);
  6. } catch (busiError) {
  7. console.log("ndef getNdefTagTypeString catch busiError: " + busiError);
  8. }

MifareClassicTag9+

MifareClassicTag提供对MIFARE Classic属性和I/O操作的访问,继承自TagSession

TagSession是所有NFC Tag技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见TagSession

以下是MifareClassicTag的独有接口。

MifareClassicTag.authenticateSector9+

authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean): Promise<void>

使用密钥对扇区进行身份验证,只有身份验证成功的扇区可以进行操作。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
sectorIndexnumber待验证的扇区索引,从0开始。
keynumber[]用于扇区验证的密钥(6字节)。
isKeyAbooleanisKeyA标志。true 表示KeyA,false 表示KeyB。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let sectorIndex = 1; // change it to be correct index.
  12. let key = [0x01, 0x02, 0x03, 0x04, 0x05, 0x06] // MUST be 6 bytes, change it to be correct key.
  13. mifareClassic.authenticateSector(sectorIndex, key, true).then(() => {
  14. console.log("mifareClassic authenticateSector Promise success.");
  15. }).catch((err)=> {
  16. console.log("mifareClassic authenticateSector Promise err: " + err);
  17. });
  18. } catch (busiError) {
  19. console.log("mifareClassic authenticateSector Promise catch busiError: " + busiError);
  20. }

MifareClassicTag.authenticateSector9+

authenticateSector(sectorIndex: number, key: number[], isKeyA: boolean, callback: AsyncCallback<void>): void

使用密钥对扇区进行身份验证,只有身份验证成功的扇区可以进行操作。使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
sectorIndexnumber待验证的扇区索引,从0开始。
keynumber[]用于扇区验证的密钥(6字节)。
isKeyAbooleanisKeyA标志。true 表示KeyA,false 表示KeyB。
callbackAsyncCallback<void>回调函数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let sectorIndex = 1; // change it to be correct index.
  12. let key = [0x01, 0x02, 0x03, 0x04, 0x05, 0x06] // MUST be 6 bytes, change it to be correct key.
  13. mifareClassic.authenticateSector(sectorIndex, key, true, (err)=> {
  14. if (err) {
  15. console.log("mifareClassic authenticateSector AsyncCallback err: " + err);
  16. } else {
  17. console.log("mifareClassic authenticateSector AsyncCallback success.");
  18. }
  19. });
  20. } catch (busiError) {
  21. console.log("mifareClassic authenticateSector AsyncCallback catch busiError: " + busiError);
  22. }

MifareClassicTag.readSingleBlock9+

readSingleBlock(blockIndex: number): Promise<number[]>

读取标签中一个块存储的内容,一个块大小为16字节。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber要读取的块索引,从0开始。

返回值:

类型说明
Promise<number[]>读取的块数据。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. mifareClassic.readSingleBlock(blockIndex).then((data) => {
  13. console.log("mifareClassic readSingleBlock Promise data: " + data);
  14. }).catch((err)=> {
  15. console.log("mifareClassic readSingleBlock Promise err: " + err);
  16. });
  17. } catch (busiError) {
  18. console.log("mifareClassic readSingleBlock Promise catch busiError: " + busiError);
  19. }

MifareClassicTag.readSingleBlock9+

readSingleBlock(blockIndex: number, callback: AsyncCallback<number[]>): void

读取标签中一个块存储的内容,一个块大小为16字节。使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber要读取的块索引,从0开始。
callbackAsyncCallback<number[]>回调函数,返回读取到的数据。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. mifareClassic.readSingleBlock(blockIndex, (err, data)=> {
  13. if (err) {
  14. console.log("mifareClassic readSingleBlock AsyncCallback err: " + err);
  15. } else {
  16. console.log("mifareClassic readSingleBlock AsyncCallback data: " + data);
  17. }
  18. });
  19. } catch (busiError) {
  20. console.log("mifareClassic readSingleBlock AsyncCallback catch busiError: " + busiError);
  21. }

MifareClassicTag.writeSingleBlock9+

writeSingleBlock(blockIndex: number, data: number[]): Promise<void>

向标签中一个块存储写入内容,一个块大小为16字节。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber要写入的块索引,从0开始。
datanumber[]要写入的数据,大小必须是16个字节。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. let rawData = [0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A,
  13. 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10]; // MUST be 16 bytes, change it to be correct data.
  14. mifareClassic.writeSingleBlock(blockIndex, rawData).then(() => {
  15. console.log("mifareClassic writeSingleBlock Promise success.");
  16. }).catch((err)=> {
  17. console.log("mifareClassic writeSingleBlock Promise err: " + err);
  18. });
  19. } catch (busiError) {
  20. console.log("mifareClassic writeSingleBlock Promise catch busiError: " + busiError);
  21. }

MifareClassicTag.writeSingleBlock9+

writeSingleBlock(blockIndex: number, data: number[], callback: AsyncCallback<void>): void

向标签中一个块存储写入内容,一个块大小为16字节。使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber要写入的块索引,从0开始。
datanumber[]要写入的数据,大小必须是16个字节。
callbackAsyncCallback<void>回调函数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. let rawData = [0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0A,
  13. 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x10]; // MUST be 16 bytes, change it to be correct data.
  14. mifareClassic.writeSingleBlock(blockIndex, rawData, (err)=> {
  15. if (err) {
  16. console.log("mifareClassic writeSingleBlock AsyncCallback err: " + err);
  17. } else {
  18. console.log("mifareClassic writeSingleBlock AsyncCallback success.");
  19. }
  20. });
  21. } catch (busiError) {
  22. console.log("mifareClassic writeSingleBlock AsyncCallback catch busiError: " + busiError);
  23. }

MifareClassicTag.incrementBlock9+

incrementBlock(blockIndex: number, value: number): Promise<void>

对指定块的内容,增加指定的数值。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber要指定增加的块索引,从0开始。
valuenumber要指定增加的数据,非负数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. let value = 0x20; // change it to be correct data.
  13. mifareClassic.incrementBlock(blockIndex, value).then(() => {
  14. console.log("mifareClassic incrementBlock Promise success.");
  15. }).catch((err)=> {
  16. console.log("mifareClassic incrementBlock Promise err: " + err);
  17. });
  18. } catch (busiError) {
  19. console.log("mifareClassic incrementBlock Promise catch busiError: " + busiError);
  20. }

MifareClassicTag.incrementBlock9+

incrementBlock(blockIndex: number, value: number, callback: AsyncCallback<void>): void

对指定块的内容,增加指定的数值。使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber要被运算的块索引,从0开始。
valuenumber要增加的数值,非负数。
callbackAsyncCallback<void>回调函数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. let value = 0x20; // change it to be correct data.
  13. mifareClassic.incrementBlock(blockIndex, value, (err)=> {
  14. if (err) {
  15. console.log("mifareClassic incrementBlock AsyncCallback err: " + err);
  16. } else {
  17. console.log("mifareClassic incrementBlock AsyncCallback success.");
  18. }
  19. });
  20. } catch (busiError) {
  21. console.log("mifareClassic incrementBlock AsyncCallback catch busiError: " + busiError);
  22. }

MifareClassicTag.decrementBlock9+

decrementBlock(blockIndex: number, value: number): Promise<void>

对指定块的内容,减少指定的数值。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber要被运算的块索引,从0开始。
valuenumber要减少的数值,非负数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. let value = 0x20; // change it to be correct data.
  13. mifareClassic.decrementBlock(blockIndex, value).then(() => {
  14. console.log("mifareClassic decrementBlock Promise success.");
  15. }).catch((err)=> {
  16. console.log("mifareClassic decrementBlock Promise err: " + err);
  17. });
  18. } catch (busiError) {
  19. console.log("mifareClassic decrementBlock Promise catch busiError: " + busiError);
  20. }

MifareClassicTag.decrementBlock9+

decrementBlock(blockIndex: number, value: number, callback: AsyncCallback<void>): void

对指定块的内容,减少指定的数值。使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber要被运算的块索引,从0开始。
valuenumber要减少的数值,非负数。
callbackAsyncCallback<void>回调函数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. let value = 0x20; // change it to be correct data.
  13. mifareClassic.decrementBlock(blockIndex, value, (err)=> {
  14. if (err) {
  15. console.log("mifareClassic decrementBlock AsyncCallback err: " + err);
  16. } else {
  17. console.log("mifareClassic decrementBlock AsyncCallback success.");
  18. }
  19. });
  20. } catch (busiError) {
  21. console.log("mifareClassic decrementBlock AsyncCallback catch busiError: " + busiError);
  22. }

MifareClassicTag.transferToBlock9+

transferToBlock(blockIndex: number): Promise<void>

将临时寄存器的值转移到指定的块。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber被操作的块的索引,从0开始。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. mifareClassic.transferToBlock(blockIndex).then(() => {
  13. console.log("mifareClassic transferToBlock Promise success.");
  14. }).catch((err)=> {
  15. console.log("mifareClassic transferToBlock Promise err: " + err);
  16. });
  17. } catch (busiError) {
  18. console.log("mifareClassic transferToBlock Promise catch busiError: " + busiError);
  19. }

MifareClassicTag.transferToBlock9+

transferToBlock(blockIndex: number, callback: AsyncCallback<void>): void

将临时寄存器的值转移到指定的块。使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber被操作的块的索引,从0开始。
callbackAsyncCallback<void>回调函数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. mifareClassic.transferToBlock(blockIndex, (err)=> {
  13. if (err) {
  14. console.log("mifareClassic transferToBlock AsyncCallback err: " + err);
  15. } else {
  16. console.log("mifareClassic transferToBlock AsyncCallback success.");
  17. }
  18. });
  19. } catch (busiError) {
  20. console.log("mifareClassic transferToBlock AsyncCallback catch busiError: " + busiError);
  21. }

MifareClassicTag.restoreFromBlock9+

restoreFromBlock(blockIndex: number): Promise<void>

将指定块的值复制到临时寄存器。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber被操作的块的索引,从0开始。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. mifareClassic.restoreFromBlock(blockIndex).then(() => {
  13. console.log("mifareClassic restoreFromBlock Promise success.");
  14. }).catch((err)=> {
  15. console.log("mifareClassic restoreFromBlock Promise err: " + err);
  16. });
  17. } catch (busiError) {
  18. console.log("mifareClassic restoreFromBlock Promise catch busiError: " + busiError);
  19. }

MifareClassicTag.restoreFromBlock9+

restoreFromBlock(blockIndex: number, callback: AsyncCallback<void>): void

将指定块的值复制到临时寄存器。使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
blockIndexnumber被操作的块的索引,从0开始。
callbackAsyncCallback<void>回调函数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareClassic.isTagConnected()) {
  5. if (!mifareClassic.connectTag()) {
  6. console.log("mifareClassic connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let blockIndex = 1; // change it to be correct index.
  12. mifareClassic.restoreFromBlock(blockIndex, (err)=> {
  13. if (err) {
  14. console.log("mifareClassic restoreFromBlock AsyncCallback err: " + err);
  15. } else {
  16. console.log("mifareClassic restoreFromBlock AsyncCallback success.");
  17. }
  18. });
  19. } catch (busiError) {
  20. console.log("mifareClassic restoreFromBlock AsyncCallback catch busiError: " + busiError);
  21. }

MifareClassicTag.getSectorCount9+

getSectorCount(): number

获取MIFARE Classic标签中的扇区数。

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

返回值:

类型说明
number标签中的扇区数量。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. let sectorCount = mifareClassic.getSectorCount();
  4. console.log("mifareClassic sectorCount: " + sectorCount);

MifareClassicTag.getBlockCountInSector9+

getBlockCountInSector(sectorIndex: number): number

获取指定扇区中的块数。

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

参数:

参数名类型必填说明
sectorIndexnumber扇区序号,从0开始。

返回值:

类型说明
number该扇区内的块数量。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. try {
  4. let sectorIndex = 1; // change it to be correct index.
  5. let blockCnt = mifareClassic.getBlockCountInSector(sectorIndex);
  6. console.log("mifareClassic blockCnt: " + blockCnt);
  7. } catch (busiError) {
  8. console.log("mifareClassic getBlockCountInSector catch busiError: " + busiError);
  9. }

MifareClassicTag.getType9+

getType(): tag.MifareClassicType

获取MIFARE Classic标签的类型。

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

返回值:

类型说明
tag.MifareClassicTypeMifareClassic标签的类型。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. let getType = mifareClassic.getType();
  4. console.log("mifareClassic getType: " + getType);

MifareClassicTag.getTagSize9+

getTagSize(): number

获取标签的存储空间大小,具体请参见MifareClassicSize

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

返回值:

类型说明
number标签的大小,单位为字节,请参见MifareClassicSize

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. let tagSize = mifareClassic.getTagSize();
  4. console.log("mifareClassic tagSize: " + tagSize);

MifareClassicTag.isEmulatedTag9+

isEmulatedTag(): boolean

检查标签是不是被模拟的。

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

返回值:

类型说明
boolean检查结果,true: 是;false:否。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. let isEmulatedTag = mifareClassic.isEmulatedTag();
  4. console.log("mifareClassic isEmulatedTag: " + isEmulatedTag);

MifareClassicTag.getBlockIndex9+

getBlockIndex(sectorIndex: number): number

获取特定扇区的第一个块的序号。

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

参数:

参数名类型必填说明
sectorIndexnumber扇区序号,从0开始。

返回值:

类型说明
number该扇区内的第一个块的序号,从0开始。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. try {
  4. let sectorIndex = 1; // change it to be correct index.
  5. let blockIndex = mifareClassic.getBlockIndex(sectorIndex);
  6. console.log("mifareClassic blockIndex: " + blockIndex);
  7. } catch (busiError) {
  8. console.log("mifareClassic getBlockIndex catch busiError: " + busiError);
  9. }

MifareClassicTag.getSectorIndex9+

getSectorIndex(blockIndex: number): number

获取包含指定块号的扇区序号。

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

参数:

参数名类型必填说明
blockIndexnumber块序号,从0开始。

返回值:

类型说明
number扇区序号,从0开始。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareClassic' correctly.
  3. try {
  4. let blockIndex = 1; // change it to be correct index.
  5. let sectorIndex = mifareClassic.getSectorIndex(blockIndex);
  6. console.log("mifareClassic sectorIndex: " + sectorIndex);
  7. } catch (busiError) {
  8. console.log("mifareClassic getSectorIndex catch busiError: " + busiError);
  9. }

MifareUltralightTag9+

MifareUltralightTag 提供对MIFARE Ultralight属性和I/O操作的访问,继承自TagSession。

TagSession是所有NFC Tag技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见TagSession

以下是MifareUltralightTag的独有接口。

MifareUltralightTag.readMultiplePages9+

readMultiplePages(pageIndex: number): Promise<number[]>

读取标签的4页数据,共16字节的数据。每个页面数据大小为4字节。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
pageIndexnumber要读取页面的索引,从0开始。

返回值:

类型说明
Promise<number[]>读取的4页的数据,共16字节。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareUltralight' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareUltralight.isTagConnected()) {
  5. if (!mifareUltralight.connectTag()) {
  6. console.log("mifareUltralight connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let pageIndex = 1; // change it to be correct index.
  12. mifareUltralight.readMultiplePages(pageIndex).then((data) => {
  13. console.log("mifareUltralight readMultiplePages Promise data = " + data);
  14. }).catch((err)=> {
  15. console.log("mifareUltralight readMultiplePages Promise err: " + err);
  16. });
  17. } catch (busiError) {
  18. console.log("mifareUltralight readMultiplePages Promise catch busiError: " + busiError);
  19. }

MifareUltralightTag.readMultiplePages9+

readMultiplePages(pageIndex: number, callback: AsyncCallback<number[]>): void

读取标签的4页数据,共16字节的数据。每个页面数据大小为4字节。使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
pageIndexnumber要读取页面的索引,从0开始。
callbackAsyncCallback<number[]>回调函数,返回读取到的数据,共16字节。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareUltralight' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareUltralight.isTagConnected()) {
  5. if (!mifareUltralight.connectTag()) {
  6. console.log("mifareUltralight connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let pageIndex = 1; // change it to be correct index.
  12. mifareUltralight.readMultiplePages(pageIndex, (err, data)=> {
  13. if (err) {
  14. console.log("mifareUltralight readMultiplePages AsyncCallback err: " + err);
  15. } else {
  16. console.log("mifareUltralight readMultiplePages AsyncCallback data: " + data);
  17. }
  18. });
  19. } catch (busiError) {
  20. console.log("mifareUltralight readMultiplePages AsyncCallback catch busiError: " + busiError);
  21. }

MifareUltralightTag.writeSinglePage9+

writeSinglePage(pageIndex: number, data: number[]): Promise<void>

写入一页数据,数据大小为4字节。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
pageIndexnumber要写入页面的索引,从0开始。
datanumber[]要写入页面的数据内容,必须是4个字节大小。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareUltralight' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareUltralight.isTagConnected()) {
  5. if (!mifareUltralight.connectTag()) {
  6. console.log("mifareUltralight connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let pageIndex = 1; // change it to be correct index.
  12. let rawData = [0x01, 0x02, 0x03, 0x04]; // MUST be 4 bytes, change it to be correct raw data.
  13. mifareUltralight.writeSinglePage(pageIndex, rawData).then(() => {
  14. console.log("mifareUltralight writeSinglePage Promise success.");
  15. }).catch((err)=> {
  16. console.log("mifareUltralight writeSinglePage Promise err: " + err);
  17. });
  18. } catch (busiError) {
  19. console.log("mifareUltralight writeSinglePage Promise catch busiError: " + busiError);
  20. }

MifareUltralightTag.writeSinglePage9+

writeSinglePage(pageIndex: number, data: number[], callback: AsyncCallback<void>): void

写入一页数据,数据大小为4字节。使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
pageIndexnumber要写入页面的索引,从0开始。
datanumber[]要写入页面的数据内容,必须是4个字节大小。
callbackAsyncCallback<void>回调函数。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareUltralight' correctly.
  3. // connect the tag at first if not connected.
  4. if (!mifareUltralight.isTagConnected()) {
  5. if (!mifareUltralight.connectTag()) {
  6. console.log("mifareUltralight connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. let pageIndex = 1; // change it to be correct index.
  12. let rawData = [0x01, 0x02, 0x03, 0x04]; // MUST be 4 bytes, change it to be correct raw data.
  13. mifareUltralight.writeSinglePage(pageIndex, rawData, (err)=> {
  14. if (err) {
  15. console.log("mifareUltralight writeSinglePage AsyncCallback err: " + err);
  16. } else {
  17. console.log("mifareUltralight writeSinglePage AsyncCallback success.");
  18. }
  19. });
  20. } catch (busiError) {
  21. console.log("mifareUltralight writeSinglePage AsyncCallback catch busiError: " + busiError);
  22. }

MifareUltralightTag.getType9+

getType(): tag.MifareUltralightType

获取MIFARE Ultralight标签的类型。

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

返回值:

类型说明
tag.MifareUltralightTypeMIFARE Ultralight标签的类型。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'mifareUltralight' correctly.
  3. let getType = mifareClassic.getType();
  4. console.log("mifareUltralight getType: " + getType);

NdefFormatableTag9+

NdefFormatableTag为NDEF Formattable的标签提供格式化操作,继承自TagSession。

TagSession是所有NFC Tag 技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见TagSession

以下是NdefFormatableTag的独有接口。

NdefFormatableTag.format9+

format(message: NdefMessage): Promise<void>

将标签格式化为NDEF标签,将NDEF消息写入NDEF标签。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
messageNdefMessage格式化成功时要写入的NDEF消息。可以为null,为null时仅格式化标签,不写入内容。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefFormatable' correctly.
  3. // connect the tag at first if not connected.
  4. if (!ndefFormatable.isTagConnected()) {
  5. if (!ndefFormatable.connectTag()) {
  6. console.log("ndefFormatable connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. // ndefMessage created from raw data, such as:
  12. let ndefMessage = tag.ndef.createNdefMessage([0xD1, 0x01, 0x03, 0x54, 0x4E, 0x46, 0x43]); // MUST can be parsed as NDEF Record.
  13. // or ndefMessage created from tag.ndef.createNdefMessage(ndefRecords: NdefRecord[])
  14. ndefFormatable.format(ndefMessage).then(() => {
  15. console.log("ndefFormatable format Promise success.");
  16. }).catch((err)=> {
  17. console.log("ndefFormatable format Promise err: " + err);
  18. });
  19. } catch (busiError) {
  20. console.log("ndefFormatable format Promise catch busiError: " + busiError);
  21. }

NdefFormatableTag.format9+

format(message: NdefMessage, callback: AsyncCallback<void>): void

将标签格式化为NDEF标签,然后将NDEF消息写入NDEF标签。使用AsyncCallback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
messageNdefMessage格式化成功时要写入的Ndef消息。可以为null,为null时仅格式化标签,不写入内容。

返回值:

类型说明
callback: AsyncCallback<void>回调函数。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefFormatable' correctly.
  3. // connect the tag at first if not connected.
  4. if (!ndefFormatable.isTagConnected()) {
  5. if (!ndefFormatable.connectTag()) {
  6. console.log("ndefFormatable connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. // ndefMessage created from raw data, such as:
  12. let ndefMessage = tag.ndef.createNdefMessage([0xD1, 0x01, 0x03, 0x54, 0x4E, 0x46, 0x43]); // MUST can be parsed as NDEF Record.
  13. // or ndefMessage created from tag.ndef.createNdefMessage(ndefRecords: NdefRecord[])
  14. ndefFormatable.format(ndefMessage, (err)=> {
  15. if (err) {
  16. console.log("ndefFormatable format AsyncCallback err: " + err);
  17. } else {
  18. console.log("ndefFormatable format AsyncCallback success.");
  19. }
  20. });
  21. } catch (busiError) {
  22. console.log("ndefFormatable format AsyncCallback catch busiError: " + busiError);
  23. }

NdefFormatableTag.formatReadOnly9+

formatReadOnly(message: NdefMessage): Promise<void>

将标签格式化为NDEF标签,将NDEF消息写入NDEF标签,之后将标签设置为只读。使用Promise方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
messageNdefMessage格式化成功时要写入的NDEF消息。可以为null,为null时仅格式化标签,不写入内容。

错误码:

以下错误码的详细介绍请参见NFC错误码

错误码ID错误信息
3100201Tag running state is abnormal in service.

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefFormatable' correctly.
  3. // connect the tag at first if not connected.
  4. if (!ndefFormatable.isTagConnected()) {
  5. if (!ndefFormatable.connectTag()) {
  6. console.log("ndefFormatable connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. // ndefMessage created from raw data, such as:
  12. let ndefMessage = tag.ndef.createNdefMessage([0xD1, 0x01, 0x03, 0x54, 0x4E, 0x46, 0x43]); // MUST can be parsed as NDEF Record.
  13. // or ndefMessage created from tag.ndef.createNdefMessage(ndefRecords: NdefRecord[])
  14. ndefFormatable.formatReadOnly(ndefMessage).then(() => {
  15. console.log("ndefFormatable formatReadOnly Promise success.");
  16. }).catch((err)=> {
  17. console.log("ndefFormatable formatReadOnly Promise err: " + err);
  18. });
  19. } catch (busiError) {
  20. console.log("ndefFormatable formatReadOnly Promise catch busiError: " + busiError);
  21. }

NdefFormatableTag.formatReadOnly9+

formatReadOnly(message: NdefMessage, callback: AsyncCallback<void>): void

将标签格式化为NDEF标签,然后将NDEF消息写入NDEF标签,之后将标签设置为只读。使用callback方式作为异步方法。

需要权限: ohos.permission.NFC_TAG

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

参数:

参数名类型必填说明
messageNdefMessage格式化成功时要写入的NDEF消息。可以为null,为null时仅格式化标签,不写入内容。

返回值:

类型说明
callback: AsyncCallback<void>回调函数。

示例:

  1. import tag from '@ohos.nfc.tag';
  2. // see 'tag.TagInfo' at 'js-apis-nfcTag.md', obtains the 'ndefFormatable' correctly.
  3. // connect the tag at first if not connected.
  4. if (!ndefFormatable.isTagConnected()) {
  5. if (!ndefFormatable.connectTag()) {
  6. console.log("ndefFormatable connectTag failed.");
  7. return;
  8. }
  9. }
  10. try {
  11. // ndefMessage created from raw data, such as:
  12. let ndefMessage = tag.ndef.createNdefMessage([0xD1, 0x01, 0x03, 0x54, 0x4E, 0x46, 0x43]); // MUST can be parsed as NDEF Record.
  13. // or ndefMessage created from tag.ndef.createNdefMessage(ndefRecords: NdefRecord[])
  14. ndefFormatable.formatReadOnly(ndefMessage, (err)=> {
  15. if (err) {
  16. console.log("ndefFormatable formatReadOnly AsyncCallback err: " + err);
  17. } else {
  18. console.log("ndefFormatable formatReadOnly AsyncCallback success.");
  19. }
  20. });
  21. } catch (busiError) {
  22. console.log("ndefFormatable formatReadOnly AsyncCallback catch busiError: " + busiError);
  23. }
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号