MozNDEFRecord.id
The id
property of the MozNDEFRecord
interface is application dependent (an appropriate id can be used, depending on functionality), but generally will return an NDEF Record identifier.
Syntax
JavaScript
Copy Code
readonly attribute Uint8Array id;
Example
JavaScript
Copy Code
var tnf = 0x1; // NFC Forum Well Known type var type = new Uint8Array(NfcUtils.fromUTF8("U")); // URL type var id = new Uint8Array(NfcUtils.fromUTF8("")); // id var payload = new Uint8Array(NfcUtils.fromUTF8("\u0003mozilla.org")); // URL data, with a short record prefix 0x3 replacing http:// var ndefRecords = [new MozNDEFRecord(tnf, type, id, payload)];
Value
a Uint8Array
.
Specifications
The NFC implementation in Gecko follows the NFC Forum specifications.
Browser compatibility
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support |
No support |
No support | No support | No support | No support |
Feature | Android | Firefox Mobile (Gecko) | Firefox OS (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | No support | No support | 2.0 moz [1] | No support | No support | No support |
[1] Available in privileged apps as of Firefox OS 2.2; certified-only before that.
See also
- Using the NFC API
- Using the NFC emulator
- NFC Forum Data Exchange Format Technical Specification
- Draft W3C NDEF-related formats
License
© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/mozndefrecord/id