js-apis-nfctech.md 52.7 KB
Newer Older
G
guoyanwen 已提交
1 2 3 4 5 6 7 8 9
# 标准NFC-Tag  Nfc 技术

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

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

## **导入模块**

G
guoyanwen 已提交
10
```js
G
guoyanwen 已提交
11 12 13
import tag from '@ohos.nfc.tag';
```

G
guoyanwen 已提交
14
## NfcATag
G
guoyanwen 已提交
15

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

G
guoyanwen 已提交
18
TagSession是所有Nfc tag 技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见[TagSession](js-apis-tagSession.md)
G
guoyanwen 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75

以下是NfcATag的独有接口。

### NfcATag.getSak

getSak(): number

获取NFC-A标签的SAK值。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| number  | NfcA 标签的SAK值。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let sak = tag.getNfcATag(taginfo).getSak(); 
console.log("sak:" +sak);
```

### NfcATag.getAtqa

getAtqa(): number[]

获取NFC-A标签的Atqa值。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| number[]  | NfcA 标签的Ataq值。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let atqa = tag.getNfcATag(taginfo).getAtqa();
console.log("atqa:" +atqa);
```

## NfcBTag

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

G
guoyanwen 已提交
78
TagSession是所有Nfc tag 技术类型的基类,提供建立连接和发送数据等共同接口。具体请参见[TagSession](js-apis-tagSession.md)
G
guoyanwen 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135

以下是NfcBTag的独有接口。

### NfcBTag.getRespAppData

getRespAppData(): number[]

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

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| number[]  | NfcB 标签的Resp数据。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let appData = tag.getNfcBTag(taginfo).getRespAppData();  
console.log("appData:" +appData);
```

### NfcBTag.getRespProtocol

getRespProtocol(): number[]

获取标签的协议信息。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| number[]  | NfcB 标签的协议信息。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let protocol = tag.getNfcBTag(taginfo).getRespProtocol();
console.log("appData:" +protocol);
```

## NfcFTag

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

G
guoyanwen 已提交
138
TagSession是所有Nfc tag 技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见[TagSession](js-apis-tagSession.md)
G
guoyanwen 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184

以下是NfcFTag的独有接口。

### NfcFTag.getSystemCode

getSystemCode(): number[]

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

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                            |
| ------------------ | --------------------------|
| number[]  | NfcF 标签的协议信息。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let systemCode = tag.getNfcFTag(taginfo).getSystemCode();  
console.log("systemCode:" +systemCode);
```

### NfcFTag.getPmm

getPmm(): number[]

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

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| number[]  | NfcF 标签的PMm信息。|

**示例:**
G
guoyanwen 已提交
185

G
guoyanwen 已提交
186 187 188 189 190 191 192 193 194 195
```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let pmm = tag.getNfcFTag(taginfo).getPmm();
console.log("pmm:" +pmm);
```

## NfcVTag

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

G
guoyanwen 已提交
198
TagSession是所有Nfc tag 技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见[TagSession](js-apis-tagSession.md)
G
guoyanwen 已提交
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253

以下是NfcVTag的独有接口。

### NfcvTag.getResponseFlags

getResponseFlags(): number

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

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| number | NfcV 标签的响应标志。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let flags = tag.getNfcVTag(taginfo).getResponseFlags();  
console.log("flags:" +flags);
```

### NfcvTag.getDsfId

getDsfId(): number

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

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| number | NfcV 标签的数据存储格式标识符。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let dsfId = tag.getNfcVTag(taginfo).getDsfId();
console.log("dsfId:" +dsfId);
```

G
guoyanwen 已提交
254
## IsoDepTag<sup>9+</sup> 
G
guoyanwen 已提交
255

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

G
guoyanwen 已提交
258
TagSession是所有Nfc tag 技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见[TagSession](js-apis-tagSession.md)
G
guoyanwen 已提交
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366

以下是IsoDepTag的独有接口。

### IsoDepTag.getHistoricalBytes<sup>9+</sup>

getHistoricalBytes(): string

获取标签的历史字节。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| string | IsoDepTag 标签的历史字节。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let historicalBytes = tag.getIsoDepTag(taginfo).getHistoricalBytes();
console.log("historicalBytes:" +historicalBytes);
```

### IsoDepTag.getHiLayerResponse<sup>9+</sup>

getHiLayerResponse(): string

获取标签的HiLayer响应字节。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| string | IsoDepTag 标签的HiLayer响应字节。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let hiLayerResponse = tag.getIsoDepTag(taginfo).getHiLayerResponse();
console.log("hiLayerResponse:" +hiLayerResponse);
```

### IsoDepTag.isExtendedApduSupported<sup>9+</sup>

isExtendedApduSupported(): Promise&lt;boolean&gt;

检查是否支持外部apdu长度,使用promise方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise&lt;boolean&gt; | 检查结果,ture: 支持, false: 不支持。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.getIsoDepTag(taginfo).isExtendedApduSupported().then(function (has) {
    console.log('has: ' + has)
}) 
```

### IsoDepTag.isExtendedApduSupported<sup>9+</sup>

isExtendedApduSupported(callback: AsyncCallback\<boolean>): void

检查是否支持外部apdu长度,使用callback方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| callback | AsyncCallback\<boolean> | 是   | 回调函数,ture: 支持, false: 不支持。 |

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.getIsoDepTag(taginfo).isExtendedApduSupported(function (error, has) {
    console.log(JSON.stringify(error))
    console.log('has: ' + has)
}) 
```

G
guoyanwen 已提交
367
## NdefTag<sup>9+</sup>
G
guoyanwen 已提交
368

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

G
guoyanwen 已提交
371
TagSession是所有Nfc tag 技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见[TagSession](js-apis-tagSession.md)
G
guoyanwen 已提交
372 373 374 375 376

以下是NdefTag的独有接口。

### NdefTag.createNdefMessage<sup>9+</sup>

G
guoyanwen 已提交
377
createNdefMessage(data: string): [NdefMessage](#ndefmessage9)
G
guoyanwen 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394

使用原始字节创建ndef消息。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| **参数名** | **类型** | **必填** | **说明** |
| -------- | -------- | -------- | -------- |
| data | string | 是 | 字符串类型的原始字节 |

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
G
guoyanwen 已提交
395
| [NdefMessage](#ndefmessage9) | Ndef消息 |
G
guoyanwen 已提交
396 397 398 399 400 401 402 403 404 405 406 407 408 409

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let NdefMessage = tag.NdefTag(taginfo).createNdefMessage(data);
```

## NdefMessage<sup>9+</sup>

### NdefMessage.getNdefRecords<sup>9+</sup>

G
guoyanwen 已提交
410
getNdefRecords(): [NdefRecord](#ndefrecord9)[ ]
G
guoyanwen 已提交
411 412 413 414 415 416 417 418 419 420 421

获取ndef消息的所有记录。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
G
guoyanwen 已提交
422
| [NdefRecord](#ndefrecord9)[ ] | Ndef消息所包含的所有记录。 |
G
guoyanwen 已提交
423 424 425 426 427 428 429 430 431 432 433 434 435 436 437

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let NdefRecord = tag.NdefTag(taginfo).getNdefRecords();
```

## NdefRecord<sup>9+</sup>

| **参数名** | **类型** |  **说明** |
| -------- | -------- | -------- |
| tnf | number |  标签的uid。 |
G
guoyanwen 已提交
438
| [rtdType](#rtdtype9) | string |  支持的技术类型。 |
G
guoyanwen 已提交
439 440 441 442 443 444 445 446 447 448 449 450
| id | string |  标签的额外信息。 |
| payload | string |  标签的RF discovery id。 |

## RtdType<sup>9+</sup>

| **参数名** | **类型** |  **说明** |
| -------- | -------- | -------- |
| RTD_TEXT | 'T' |  记录描述文本信息。|
| RTD_URI  | 'U' |  存储网络地址,邮件或者电话号码。|

### NdefTag.createNdefMessage<sup>9+</sup>

G
guoyanwen 已提交
451
createNdefMessage(ndefRecords: NdefRecord[]): [NdefMessage](#ndefmessage9)
G
guoyanwen 已提交
452 453 454 455 456 457 458 459 460 461

使用记录列表创建ndef消息。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**
| **参数名** | **类型** | **必填** | **说明** |
| -------- | -------- | -------- | -------- |
G
guoyanwen 已提交
462
| ndefRecords | [NdefRecord](#ndefrecord9)[] | 是 | NdefRecord记录列表。 |
G
guoyanwen 已提交
463 464 465 466 467

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
G
guoyanwen 已提交
468
| [NdefMessage](#ndefmessage9) | Ndef消息。|
G
guoyanwen 已提交
469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let NdefMessage = tag.NdefTag(taginfo).createNdefMessage(ndefRecords);
```

### NdefTag.getNdefTagType<sup>9+</sup>

getNdefTagType(): NfcForumType

获取Ndef标签的类型。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
G
guoyanwen 已提交
493
| [NfcForumType](#nfcforumtype9) | Ndef标签类型。|
G
guoyanwen 已提交
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let NfcForumType = tag.NdefTag(taginfo).getNdefTagType();
```

### NdefTag.getNdefMessage<sup>9+</sup>

getNdefMessage(): NdefMessage

获取发现标签时,从ndef标签读取的ndef消息。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
G
guoyanwen 已提交
518
| [NdefMessage](#ndefmessage9)  | Ndef消息。|
G
guoyanwen 已提交
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let NdefMessage = tag.NdefTag(taginfo).getNdefMessage();
```

### NdefTag.isNdefWritable<sup>9+</sup>

isNdefWritable(): Promise&lt;boolean&gt;

检查ndef标签是否可写,使用promise方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise&lt;boolean&gt; | 检查结果,ture: 可写, false: 不可写。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefTag(taginfo).isNdefWritable().then(function (has) {
    console.log(JSON.stringify(has))
})
```
G
guoyanwen 已提交
555

G
guoyanwen 已提交
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
### NdefTag.isNdefWritable<sup>9+</sup>

isNdefWritable(callback: AsyncCallback&lt;boolean&gt;): void;

检查ndef标签是否可写,使用callback方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| callback | AsyncCallback\<boolean> | 是   | 回调函数,ndef标签可写,返回true。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefTag(taginfo).isNdefWritable(function (error, has) {
    console.log(JSON.stringify(error))
    console.log('has: ' + has)
})
```

### NdefTag.readNdef<sup>9+</sup>

readNdef(): Promise\<NdefMessage>

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

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
G
guoyanwen 已提交
598
| Promise\<[NdefMessage](#ndefmessage9)> | 以Promise形式返回从标签中读取到的NdefMessage信息。|
G
guoyanwen 已提交
599 600 601 602 603 604 605 606 607 608 609

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefTag(taginfo).readNdef().then(function (ndefMessage) {
    console.log(JSON.stringify(ndefMessage))
})
```
G
guoyanwen 已提交
610

G
guoyanwen 已提交
611 612
### NdefTag.readNdef<sup>9+</sup>

G
guoyanwen 已提交
613
readNdef(callback: AsyncCallback\<[NdefMessage](#ndefmessage9)>): void
G
guoyanwen 已提交
614 615 616 617 618 619 620 621 622 623 624

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
G
guoyanwen 已提交
625
| callback | AsyncCallback\<[NdefMessage](#ndefmessage9)> | 是   | 回调函数。|
G
guoyanwen 已提交
626 627 628 629 630 631 632 633 634 635 636 637

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefTag(taginfo).readNdef(function (error, ndefMessage) {
    console.log(JSON.stringify(error))
    console.log('ndefMessage: ' + ndefMessage)
})
```
G
guoyanwen 已提交
638

G
guoyanwen 已提交
639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670
### NdefTag.writeNdef<sup>9+</sup>

writeNdef(msg: NdefMessage): Promise\<number>;

将ndef消息写入标签,使用promise方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| msg | NdefMessage | 是   | Ndef消息。|

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<number> | 以Promise形式返回,写入执行后的错误代码。如果返回0,则表示成功。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
NdefTag.writeNdef(msg).then(function (netHandle) {
    console.log(JSON.stringify(netHandle))
})
```
G
guoyanwen 已提交
671

G
guoyanwen 已提交
672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699
### NdefTag.writeNdef<sup>9+</sup>

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

将ndef消息写入此标签,使用callback方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| msg | NdefMessage | 是   | Ndef消息 |
| callback | AsyncCallback\<number> | 是   | 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefTag(taginfo).write(msgfunction (error, has) {
    console.log(JSON.stringify(error))
    console.log('has: ' + has)
})
```
G
guoyanwen 已提交
700

G
guoyanwen 已提交
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726
### NdefTag.canSetReadOnly<sup>9+</sup>

canSetReadOnly(): Promise\<boolean>

检查ndef标签是否可以设置为只读,使用promise方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise&lt;boolean&gt; | ture: 标签可设置为只读, false: 标签不可设置为只读。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefTag(taginfo).canSetReadOnly().then(function (has) {
    console.log(JSON.stringify(has))
})
```
G
guoyanwen 已提交
727

G
guoyanwen 已提交
728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754
### NdefTag.canSetReadOnly<sup>9+</sup>

isNdefWritable(callback: AsyncCallback&lt;boolean&gt;): void;

检查ndef标签是否可以设置为只读,使用callback方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| callback | AsyncCallback\<boolean> | 是   | 回调函数,ndef标签可设置为只读,返回true。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefTag(taginfo).canSetReadOnly(function (error, has) {
    console.log(JSON.stringify(error))
    console.log('has: ' + has)
})
```
G
guoyanwen 已提交
755

G
guoyanwen 已提交
756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
### NdefTag.setReadOnly<sup>9+</sup>

setReadOnly(): Promise\<number>

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

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise&lt;number&gt; | 0: 设置成功, 其它: 错误编码。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefTag(taginfo).setReadOnly().then(function (errcode) {
    console.log(JSON.stringify(errcode))
})
```
G
guoyanwen 已提交
782

G
guoyanwen 已提交
783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
### NdefTag.setReadOnly<sup>9+</sup>

setReadOnly(callback: AsyncCallback<number>): void

检查ndef标签是否可以设置为只读,使用callback方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| callback | AsyncCallback\<number> | 是   | 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefTag(taginfo).setReadOnly(function (error, errcode) {
    console.log(JSON.stringify(error))
    console.log('has: ' + errcode)
})
```
G
guoyanwen 已提交
810

G
guoyanwen 已提交
811 812
### NdefTag.getNdefTagTypeString<sup>9+</sup>

G
guoyanwen 已提交
813
getNdefTagTypeString(type: [NfcForumType](#nfcforumtype9)): string
G
guoyanwen 已提交
814 815 816 817 818 819 820 821 822 823 824

将Nfc论坛类型转换为Nfc论坛中定义的字节数组。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
G
guoyanwen 已提交
825
| type | [NfcForumType](#nfcforumtype9) | 是   | NfcForum论坛类型。 |
G
guoyanwen 已提交
826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| string | Nfc论坛类型字节数组。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let ndefTypeString= tag.NdefTag(taginfo).getNdefTagTypeString(type); 
```

## NfcForumType<sup>9+</sup>

| **参数名** | **类型** |  **说明** |
| -------- | -------- | -------- |
| NFC_FORUM_TYPE_1 | 1 |  NFC论坛类型1。 |
| NFC_FORUM_TYPE_2 | 2 |  NFC论坛类型2。 |
| NFC_FORUM_TYPE_3  | 3 |  NFC论坛类型3。 |
| NFC_FORUM_TYPE_4  | 4 |  NFC论坛类型4。 |
| MIFARE_CLASSIC  | 101 |   Mifare Classic类型。 |

## MifareClassicTag <sup>9+</sup>

G
guoyanwen 已提交
854
MifareClassicTag提供对MIFARE经典属性和I/O操作的访问,继承自TagSession。
G
guoyanwen 已提交
855

G
guoyanwen 已提交
856
TagSession是所有Nfc tag 技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见[TagSession](js-apis-tagSession.md)
G
guoyanwen 已提交
857 858 859

以下是MifareClassicTag的独有接口。

G
guoyanwen 已提交
860
### MifareClassicTag.authenticateSector<sup>9+</sup>
G
guoyanwen 已提交
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894

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

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| sectorIndex | number | 是   | 待验证的扇区索引 |
| key | number[]| 是   | 用于身份验证的密钥(6字节) |
| isKeyA | boolean | 是   | isKeyA标志。true 表示KeyA,false 表示KeyB。|

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<boolean> | 身份验证结果,成功返回true,失败返回false。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).authenticateSector(sectorIndex, key).then(function (isKeyA) {
        console.log(JSON.stringify(isKeyA))
        })
```

G
guoyanwen 已提交
895
### MifareClassicTag.authenticateSector<sup>9+</sup>
G
guoyanwen 已提交
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925

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

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| sectorIndex | number | 是   | 待验证的扇区索引。 |
| key | number[]| 是   | 用于身份验证的密钥(6字节)。 |
| isKeyA | boolean | 是   | isKeyA标志。true 表示KeyA,false 表示KeyB。|
| callback | AsyncCallback\<boolean> | 是   | 回调函数。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).authenticateSector(sectorIndex, key, function (error, has) {
    console.log(JSON.stringify(error))
    console.log('has: ' + has)
})
```

G
guoyanwen 已提交
926
### MifareClassicTag.readSingleBlock<sup>9+</sup>
G
guoyanwen 已提交
927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958

readSingleBlock(blockIndex: number): Promise\<string>

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 要读取的块索引。 |

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<string> | 读取的块数据。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

let data = "xxx";
// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).readSingleBlock(blockIndex).then(function (data){
    console.log('data: ' + data)
    })
```
G
guoyanwen 已提交
959 960

### MifareClassicTag.readSingleBlock<sup>9+</sup>
G
guoyanwen 已提交
961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988

readSingleBlock(blockIndex: number, callback: AsyncCallback\<string>): void

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 要读取的块索引 |
| callback | AsyncCallback\<string> | 是   | 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

let data = "xxx";
// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).readSingleBlock(blockIndex, function (error, data) {
    console.log(JSON.stringify(error))
    console.log('data: ' + data)
})
```
G
guoyanwen 已提交
989 990

### MifareClassicTag.writeSingleBlock<sup>9+</sup>
G
guoyanwen 已提交
991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024

writeSingleBlock(blockIndex: number, data: string): Promise\<number>

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 要写入的块索引。 |
| data | string | 是   | 要写入的数据。 |

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<number> | 执行写入操作返回的错误代码。如果返回0,则表示成功。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

let data = "xxx";
// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).writeSingleBlock(blockIndex, data).then(function (errcode){
    console.log(JSON.stringify(errcode))
    })
```

G
guoyanwen 已提交
1025
### MifareClassicTag.writeSingleBlock<sup>9+</sup>
G
guoyanwen 已提交
1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055

writeSingleBlock(blockIndex: number, data: string, callback: AsyncCallback\<number>): void

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 要写入的块索引 |
| data | string | 是   | 要写入的数据 |
| callback | AsyncCallback\<number> | 是   | 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

let data = "xxx";
// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).writeSingleBlock(blockIndex, data, function (error, errcode) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(errcode))
})
```

G
guoyanwen 已提交
1056
### MifareClassicTag.incrementBlock<sup>9+</sup>
G
guoyanwen 已提交
1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089

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

增加一块带值的区域块。使用promise方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 要增加的块索引。 |
| value | number | 是   | 要增加的块数据,非负值。 |

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<number> | 执行新增操作返回的错误代码。如果返回0,则表示成功。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).incrementBlock(blockIndex, value).then(function (errcode){
    console.log(JSON.stringify(errcode))
    })
```

G
guoyanwen 已提交
1090
### MifareClassicTag.incrementBlock<sup>9+</sup>
G
guoyanwen 已提交
1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119

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

增加一块带值的区域块。使用callback方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 要增加的块索引。 |
| value | number | 是   | 要增加的块数据,非负值。 |
| callback | AsyncCallback\<number> | 是   | 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).incrementBlock(blockIndex, value, function (error, errcode) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(errcode))
})
```

G
guoyanwen 已提交
1120
### MifareClassicTag.decrementBlock<sup>9+</sup>
G
guoyanwen 已提交
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153

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

递减一块带值的区域块。使用promise方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 要递减的块索引。 |
| value | number | 是   | 要递减的块数据,非负值。 |

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<number> | 执行递减操作返回的错误代码。如果返回0,则表示成功。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).decrementBlock(blockIndex, value).then(function (errcode){
    console.log(JSON.stringify(errcode))
    })
```

G
guoyanwen 已提交
1154
### MifareClassicTag.decrementBlock<sup>9+</sup>
G
guoyanwen 已提交
1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183

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

递减一块带值的区域块。使用callback方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 要递减的块索引。 |
| value | number | 是   | 要递减的块数据,非负值。 |
| callback | AsyncCallback\<number> | 是   | 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).decrementBlock(blockIndex, value, function (error, errcode) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(errcode))
})
```

G
guoyanwen 已提交
1184
### MifareClassicTag.transferToBlock<sup>9+</sup>
G
guoyanwen 已提交
1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206

transferToBlock(blockIndex: number): Promise\<number>

将寄存器的值复制到块。使用promise方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 复制的目的块索引。 |

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<number> | 执行复制操作返回的错误代码。如果返回0,表示成功;否则返回错误码。|

**示例:**
G
guoyanwen 已提交
1207

G
guoyanwen 已提交
1208
```js
G
guoyanwen 已提交
1209

G
guoyanwen 已提交
1210 1211 1212 1213 1214 1215 1216 1217
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).transferToBlock(blockIndex).then(function (errcode){
    console.log(JSON.stringify(errcode))
    })
```

G
guoyanwen 已提交
1218
### MifareClassicTag.transferToBlock
G
guoyanwen 已提交
1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246

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

将寄存器的值复制到块。使用callback方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 复制的目的块索引 |
| callback | AsyncCallback\<number> | 是   | 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).transferToBlock(blockIndex, function (error, errcode) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(errcode))
})
```

G
guoyanwen 已提交
1247
### MifareClassicTag.restoreFromBlock<sup>9+</sup>
G
guoyanwen 已提交
1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269

restoreFromBlock(blockIndex: number): Promise\<number>

将块的值复制到寄存器。使用promise方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 复制的源块索引。|

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<number> | 执行复制操作返回的错误代码。如果返回0,表示成功;否则返回错误码。|

**示例:**
G
guoyanwen 已提交
1270

G
guoyanwen 已提交
1271
```js
G
guoyanwen 已提交
1272

G
guoyanwen 已提交
1273 1274 1275 1276 1277 1278 1279 1280
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).restoreFromBlock(blockIndex).then(function (errcode){
    console.log(JSON.stringify(errcode))
    })
```

G
guoyanwen 已提交
1281
### MifareClassicTag.restoreFromBlock<sup>9+</sup>
G
guoyanwen 已提交
1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309

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

将块的值复制到寄存器。使用callback方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 复制的源块索引 |
| callback | AsyncCallback\<number> | 是   | 回调函数。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareClassicTag(taginfo).restoreFromBlock(blockIndex, function (error, errcode) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(errcode))
})
```

G
guoyanwen 已提交
1310
### MifareClassicTag.getSectorCount<sup>9+</sup>
G
guoyanwen 已提交
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334

getSectorCount(): number

获取mifare classic标签中的扇区数。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| number | 扇区数量。|

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let setorCount = tag.MifareClassicTag(taginfo).getSectorCount();
```

G
guoyanwen 已提交
1335
### MifareClassicTag.getBlockCountInSector<sup>9+</sup>
G
guoyanwen 已提交
1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365

getBlockCountInSector(sectorIndex: number): number

获取扇区中的块数。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| sectorIndex | number | 是   | 扇区序号。|

**返回值:**

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

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let blockNumber = tag.MifareClassicTag(taginfo).getBlockCountInSector(sectorIndex);
```

G
guoyanwen 已提交
1366
### MifareClassicTag.getType<sup>9+</sup>
G
guoyanwen 已提交
1367

G
guoyanwen 已提交
1368
getType(): [MifareClassicType](#mifareclassictype9)
G
guoyanwen 已提交
1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379

获取MifareClassic标签的类型。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
G
guoyanwen 已提交
1380
| [MifareClassicType](#mifareclassictype9) | MifareClassic标签的类型。|
G
guoyanwen 已提交
1381 1382 1383 1384 1385 1386 1387 1388 1389 1390

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let type = tag.MifareClassicTag(taginfo).getType(); 
```

G
guoyanwen 已提交
1391
### MifareClassicTag.getTagSize<sup>9+</sup>
G
guoyanwen 已提交
1392 1393 1394

getTagSize(): number

G
guoyanwen 已提交
1395
获取标签的大小(字节),具体请参见[MifareTagSize](#mifaretagsize9)
G
guoyanwen 已提交
1396 1397 1398 1399 1400 1401 1402 1403 1404

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
G
guoyanwen 已提交
1405
| number | 标签的大小,单位为字节,请参见[MifareTagSize](#mifaretagsize9)。|
G
guoyanwen 已提交
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let size = tag.MifareClassicTag(taginfo).getTagSize();
```

## MifareClassicType<sup>9+</sup>

| **参数名** | **值** |  **说明** |
| -------- | -------- | -------- |
| TYPE_UNKNOWN | -1 |  未知Mifare类型。 |
| TYPE_CLASSIC | 0 |  Mifare Classic类型。|
| TYPE_PLUS   | 1 |  Mifare Plus类型。|
| TYPE_PRO  | 2 |  Mifare Pro类型。 |

## MifareTagSize<sup>9+</sup>

| **参数名** | **值** |  **说明** |
| -------- | -------- | -------- |
| MC_SIZE_MINI | 320 |  每个标签5个扇区,每个扇区4个块。 |
| MC_SIZE_1K  | 1024 |  每个标签16个扇区,每个扇区4个块。|
| MC_SIZE_2K   | 2048 |  每个标签32个扇区,每个扇区4个块。 |
| MC_SIZE_4K   | 4096 |  每个标签40个扇区,每个扇区4个块。|

G
guoyanwen 已提交
1434
### MifareClassicTag.isEmulatedTag<sup>9+</sup>
G
guoyanwen 已提交
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455

isEmulatedTag(): boolean

检查标签是否已模拟。

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

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

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
G
guoyanwen 已提交
1456
let isEmulated = tag.MifareClassicTag(taginfo).isEmulatedTag();
G
guoyanwen 已提交
1457 1458
```

G
guoyanwen 已提交
1459
### MifareClassicTag.getBlockIndex<sup>9+</sup>
G
guoyanwen 已提交
1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488

getBlockIndex(sectorIndex: number): number

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| sectorIndex | number | 是   | 扇区序号。 |

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| number | 该扇区内的第一个块的序列号。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let index = tag.MifareClassicTag(taginfo).getBlockIndex(sectorIndex);
```
G
guoyanwen 已提交
1489 1490

### MifareClassicTag.getSectorIndex<sup>9+</sup>
G
guoyanwen 已提交
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520

getSectorIndex(blockIndex: number): number

获取扇区索引,该扇区包含特定块。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| blockIndex | number | 是   | 块序号。 |

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| number | 扇区序号。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let index = tag.MifareClassicTag(taginfo).getSectorIndex(blockIndex);
```

G
guoyanwen 已提交
1521
## MifareUltralightTag<sup>9+</sup>
G
guoyanwen 已提交
1522

G
guoyanwen 已提交
1523
MifareUltralightTag 提供对MIFARE超轻属性和I/O操作的访问,继承自TagSession。
G
guoyanwen 已提交
1524

G
guoyanwen 已提交
1525
TagSession是所有Nfc tag 技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见[TagSession](js-apis-tagSession.md)
G
guoyanwen 已提交
1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551

以下是MifareUltralightTag的独有接口。

### MifareUltralightTag.readMultiplePages<sup>9+</sup>

readMultiplePages(pageIndex: number): Promise\<string>

阅读4页,共16字节。页面大小为4字节。使用promise方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | ------------------------------ |
| pageIndex | number | 是   | 要读取页面的索引。 |

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<string> | 读取的4页的数据。 |

**示例:**
G
guoyanwen 已提交
1552

G
guoyanwen 已提交
1553
```js
G
guoyanwen 已提交
1554

G
guoyanwen 已提交
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareUltralightTag(taginfo).readMultiplePages(pageIndex).then(function (data){
    console.log("data: " + data)
    })
```

### MifareUltralightTag.readMultiplePages<sup>9+</sup>

readMultiplePages(pageIndex: number, callback: AsyncCallback\<string>): void

阅读4页,共16字节。页面大小为4字节。使用callback方式作为异步方法。

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| pageIndex | number | 是   | 要读取页面的索引 |
| callback | AsyncCallback\<string> | 是   | 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareUltralightTag(taginfo).readMultiplePages(pageIndex, function (error, data) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(data))
})
```

### MifareUltralightTag.writeSinglePages<sup>9+</sup>

writeSinglePages(pageIndex: number, data: string): Promise\<number>

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
| pageIndex | number | 是   | 要写入页面的索引。 |
| data | string | 是   | 要写入页面的数据内容。 |

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<number> | 执行写入操作返回的错误代码。如果返回0,则表示成功。 |

**示例:**
G
guoyanwen 已提交
1616

G
guoyanwen 已提交
1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655
```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareUltralightTag(taginfo).writeSinglePages(pageIndex, data).then(function (errcode){
    console.log(JSON.stringify(errcode))
    })
```

### MifareUltralightTag.writeSinglePages<sup>9+</sup>

writeSinglePages(pageIndex: number, data: string, callback: AsyncCallback\<number>): void

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                     |
| -------- | ----------------------- | ---- | ------------------------ |
| pageIndex | number | 是   | 要写入页面的索引。 |
| data | string | 是   | 要写入页面的数据内容。 |
| callback|AsyncCallback\<number> |是| 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.MifareUltralightTag(taginfo).writeSinglePages(pageIndex, data, function (error, errcode) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(errcode))
})
```

G
guoyanwen 已提交
1656
### MifareUltralightTag.getType<sup>9+</sup>
G
guoyanwen 已提交
1657 1658 1659

getType(): MifareUltralightType

G
guoyanwen 已提交
1660
获取MifareUltralight标签的类型,以字节形式返回,具体请参见 [MifareUltralightType](#mifareultralighttype9)
G
guoyanwen 已提交
1661 1662 1663 1664 1665 1666 1667 1668 1669

**需要权限**:ohos.permission.NFC_TAG

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

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
G
guoyanwen 已提交
1670
| MifareUltralightType | MifareUltralight标签的类型, 具体请参见 [MifareUltralightType](#mifareultralighttype9)。|
G
guoyanwen 已提交
1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
let type = tag.MifareUltralightType(taginfo).getType(); 
```

### MifareUltralightType<sup>9+</sup>

| **参数名** | **值** |  **说明** |
| -------- | -------- | -------- |
| TYPE_UNKOWN  | -1 |  未知的 Mifare 类型。 |
| TYPE_ULTRALIGHT   | 1 |  Mifare Ultralight类型。|
| TYPE_ULTRALIGHT_C    | 2 |  Mifare UltralightC 类型。 |

G
guoyanwen 已提交
1689
## NdefFormatableTag<sup>9+</sup>
G
guoyanwen 已提交
1690

G
guoyanwen 已提交
1691
NdefFormatableTag为NDEF formattable的标签提供格式化操作,继承自TagSession。
G
guoyanwen 已提交
1692

G
guoyanwen 已提交
1693
TagSession是所有Nfc tag 技术类型的基类, 提供建立连接和发送数据等共同接口。具体请参见[TagSession](js-apis-tagSession.md)
G
guoyanwen 已提交
1694 1695 1696 1697 1698

以下是NdefFormatableTag的独有接口。

### NdefFormatableTag.format<sup>9+</sup>

G
guoyanwen 已提交
1699
format(message: [NdefMessage](#ndefmessage9)): Promise\<number>
G
guoyanwen 已提交
1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
G
guoyanwen 已提交
1711
| message | [NdefMessage](#ndefmessage9) | 是   | 格式化成功时要写入的Ndef消息。可以为null,为null时仅格式化标签,不写入内容。 |
G
guoyanwen 已提交
1712 1713 1714 1715 1716 1717 1718 1719

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<number> | 执行操作后返回的错误代码。如果返回0,则表示成功。 |

**示例:**
G
guoyanwen 已提交
1720

G
guoyanwen 已提交
1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731
```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefFormatableTag(taginfo).format(message).then(function (errcode){
    console.log(JSON.stringify(errcode))
    })
```

### NdefFormatableTag.format<sup>9+</sup>

G
guoyanwen 已提交
1732
format(message: [NdefMessage](#ndefmessage9), callback: AsyncCallback\<number>): void
G
guoyanwen 已提交
1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
G
guoyanwen 已提交
1744
| message | [NdefMessage](#ndefmessage9) | 是   | 格式化成功时要写入的Ndef消息。可以为null,为null时仅格式化标签,不写入内容。 |
G
guoyanwen 已提交
1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760
| callback: AsyncCallback\<number> | 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefFormatableTag(taginfo).format(message, function (error, errcode) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(errcode))
})
```

### NdefFormatableTag.formatReadOnly<sup>9+</sup>

G
guoyanwen 已提交
1761
formatReadOnly(message: [NdefMessage](#ndefmessage9)): Promise\<number>
G
guoyanwen 已提交
1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
G
guoyanwen 已提交
1773
| message | [NdefMessage](#ndefmessage9) | 是   | 格式化成功时要写入的Ndef消息。可以为null,为null时仅格式化标签,不写入内容。 |
G
guoyanwen 已提交
1774 1775 1776 1777 1778 1779 1780 1781

**返回值:**

| **类型** | **说明**                             |
| ------------------ | --------------------------|
| Promise\<number> | 执行操作后返回的错误代码。如果返回0,则表示成功。 |

**示例:**
G
guoyanwen 已提交
1782

G
guoyanwen 已提交
1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793
```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefFormatableTag(taginfo).formatReadOnly(message).then(function (errcode){
    console.log(JSON.stringify(errcode))
    })
```

### NdefFormatableTag.formatReadOnly<sup>9+</sup>

G
guoyanwen 已提交
1794
formatReadOnly(message: [NdefMessage](#ndefmessage9), callback: AsyncCallback\<number>): void
G
guoyanwen 已提交
1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805

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

**需要权限**:ohos.permission.NFC_TAG

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

**参数:**

| 参数名   | 类型                    | 必填 | 说明                                   |
| -------- | ----------------------- | ---- | -------------------------------------- |
G
guoyanwen 已提交
1806
| message | [NdefMessage](#ndefmessage9) | 是   | 格式化成功时要写入的Ndef消息。可以为null,为null时仅格式化标签,不写入内容。|
G
guoyanwen 已提交
1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818
| callback: AsyncCallback\<number> | 回调函数。 |

**示例:**

```js
import tag from '@ohos.nfc.tag';

// tagInfo is an Object given by nfc service when tag is dispatched.
tag.NdefFormatableTag(taginfo).formatReadOnly(message, function (error, errcode) {
    console.log(JSON.stringify(error))
    console.log(JSON.stringify(errcode))
})
G
guoyanwen 已提交
1819
```