Skip to content

Commit 55d7396

Browse files
committed
update
1 parent e7db192 commit 55d7396

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/storage/queues/storage-nodejs-how-to-use-queues.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ If the queue already exists, an exception is thrown.
6161

6262
## How to format the message
6363

64-
The message type is a string. All messages need to move into a string when sending the message and out of the string format when reading the message.
64+
The message type is a string. All messages are treated as strings. If you need to send a different data type, you need to serialize that datatype into a string when sending the message and deserialize the string format when reading the message.
6565

66-
To convert JSON to a string format and back again, use the following helper functions:
66+
To convert **JSON** to a string format and back again in Node.js, use the following helper functions:
6767

6868
```javascript
6969
function jsonToBase64(jsonObj) {

0 commit comments

Comments
 (0)