-
Notifications
You must be signed in to change notification settings - Fork 1.7k
/
Copy pathObjectId.createFromBase64.txt
101 lines (69 loc) · 2.19 KB
/
ObjectId.createFromBase64.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
.. _ObjectId.createFromBase64:
===========================
ObjectId.createFromBase64()
===========================
.. default-domain:: mongodb
.. contents:: On this page
:local:
:backlinks: none
:depth: 1
:class: singlecol
Definition
----------
Creates an :term:`ObjectId` from a base64 value.
Compatibility
-------------
This method is available in deployments hosted in the following environments:
.. include:: /includes/fact-environments-atlas-only.rst
.. include:: /includes/fact-environments-onprem-only.rst
Syntax
------
.. method:: ObjectId.createFromBase64( <base64String> [ , <subType> ] )
Method Fields
~~~~~~~~~~~~~
The method accepts the following fields:
.. list-table::
:header-rows: 1
:widths: 20 20 80
* - Field
- Type
- Description
* - ``base64String``
- String
- Specifies a 16 character base64 value. For example,
``"SGVsbG8gV29ybGQh"``.
* - ``subType``
- Integer
- Optional. Specifies a binary subtype.
.. include:: /includes/binary-sub-types.rst
Examples
--------
The following examples show how to add an object identifier to a
document using ``ObjectId.createFromBase64()`` and how the object
identifier appears in the output when retrieved.
Create Collection Containing Document with Base64 Number
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The following example creates a collection named
``objectIdentifierValuesFromBase64``:
.. code-block:: javascript
:emphasize-lines: 3
db.objectIdentifierValuesFromBase64.insertOne( {
_id: 0,
objectIdentifierValue: ObjectId.createFromBase64( "SGVsbG8gV29ybGQh" )
} )
The ``objectIdentifierValue`` field contains the object identifier
created from the base64 string specified in
``ObjectId.createFromBase64()``.
Retrieve Document from Collection with Object Identifier
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The following example retrieves the document:
.. code-block:: javascript
db.objectIdentifierValuesFromBase64.findOne( { _id: 0 } )
Example output:
.. code-block:: javascript
:copyable: false
:emphasize-lines: 3
{
_id: 0,
objectIdentifierValue: ObjectId("48656c6c6f20576f726c6421")
}