{"id":5710,"date":"2017-03-19T18:19:17","date_gmt":"2017-03-19T10:19:17","guid":{"rendered":"https:\/\/sdeno.com\/?p=5710"},"modified":"2017-03-19T18:35:50","modified_gmt":"2017-03-19T10:35:50","slug":"node-js%e5%ba%8f%e5%88%97%e5%8c%96-node-serialize","status":"publish","type":"post","link":"https:\/\/sdeno.com\/?p=5710","title":{"rendered":"node.js\u5e8f\u5217\u5316\u2014\u2014node-serialize"},"content":{"rendered":"<p>\u5e8f\u5217\u5316\u5176\u5b9e\u5c31\u662f\u628a\u5bf9\u8c61\u8f6c\u5316\u6210\u5b57\u7b26\u4e32<\/p>\n<p>\u4e3a\u4ec0\u4e48\u8981\u5e8f\u5217\u5316\uff1f<span style=\"color: #14191e;\">\u4e3a\u4e86\u6570\u636e\u7684\u4f20\u8f93\uff0c\u6709\u4e9b\u6570\u636e\u7c7b\u578b\u4e0d\u80fd\u76f4\u63a5\u4f20\u8f93\uff0c\u8981\u8f6c\u5316\u6210\u5b57\u7b26\u4e32\u4f20\u8f93\u624d\u884c\u3002<\/span><\/p>\n<p>1\uff0c<span style=\"color: #ff0000;\">\u5e8f\u5217\u5316<\/span>\uff1a\u5bf9\u8c61\u8f6c\u5316\u4e3a\u5b57\u7b26\u4e32<\/p>\n<pre>\u4f8b\u5982\uff1a\r\n\u00a0{ id: '01', name: 'Tom' }  \/\/\u8fd9\u4e2a\u662f\u5bf9\u8c61\u7c7b\u578b\r\n\u8f6c\u5316\u4e3a\r\n\"{ id: '01', name: 'Tom' }\" \/\/\u8fd9\u4e2a\u662f\u5b57\u7b26\u4e32<\/pre>\n<p>&nbsp;<\/p>\n<p>2\uff0c<span style=\"color: #ff0000;\">\u53cd\u5e8f\u5217\u5316<\/span>\uff1a\u5b57\u7b26\u4e32\u8f6c\u5bf9\u8c61<\/p>\n<pre>\"{ id: '01', name: 'Tom' }\"; \/\/\u5b57\u7b26\u4e32\u7c7b\u578b\r\n\u8f6c\u5316\u4e3a\r\n{ id: '01', name: 'Tom' }  \/\/\u5bf9\u8c61\u7c7b\u578b<\/pre>\n<p>&nbsp;<\/p>\n<p>\u5b89\u88c5\uff1a<\/p>\n<pre>npm install node-serialize<\/pre>\n<p>&nbsp;<\/p>\n<p>\u5f15\u7528\uff1a<\/p>\n<pre>var serialize = require('node-serialize');<\/pre>\n<p>&nbsp;<\/p>\n<p>\u4f7f\u7528\u65b9\u6cd5<\/p>\n<p>\u5e8f\u5217\u5316\uff1aserialize()<\/p>\n<pre>var obj = {\r\n  name: 'Bob',\r\n  say: function() {\r\n     return 'hi ' + this.name;\r\n  }\r\n};\r\n\r\nvar objS = serialize.serialize(obj);  \/\/\u5e8f\u5217\u5316\r\ntypeof objS === 'string';  \/\/\u5176\u5b9e\u5c31\u662f\u628aobj\u5bf9\u8c61\u8f6c\u5316\u4e3a\u4e86\u5b57\u7b26\u4e32<\/pre>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>\u53cd\u5e8f\u5217\u5316\uff1aunserialize()<\/p>\n<pre>var obj = {\r\n  name: 'Bob',\r\n  say: function() {\r\n    return 'hi ' + this.name;\r\n  }\r\n};\r\n\r\nvar objS = serialize.serialize(obj);\r\ntypeof objS === 'string';\r\nserialize.unserialize(objS).say() === 'hi Bob';  \/\/serialize.unserialize(objS) \u7b49\u4e8e obj<\/pre>\n<p>&nbsp;<\/p>\n<p><a href=\"https:\/\/www.npmjs.com\/package\/node-serialize\" target=\"_blank\">https:\/\/www.npmjs.com\/package\/node-serialize<\/a><\/p>\n<p>&nbsp;<\/p>\n<p>\u5ba2\u6237\u7aef\u7684\u7684\u5e8f\u5217\u5316\u53c2\u8003\uff1a<a href=\"https:\/\/sdeno.com\/?p=4348\" target=\"_blank\">https:\/\/sdeno.com\/?p=4348<\/a><\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u5e8f\u5217\u5316\u5176\u5b9e\u5c31\u662f\u628a\u5bf9\u8c61\u8f6c\u5316\u6210\u5b57\u7b26\u4e32 \u4e3a\u4ec0\u4e48\u8981\u5e8f\u5217\u5316\uff1f\u4e3a\u4e86\u6570\u636e\u7684\u4f20\u8f93\uff0c\u6709\u4e9b\u6570\u636e\u7c7b\u578b\u4e0d\u80fd\u76f4\u63a5\u4f20\u8f93\uff0c\u8981\u8f6c\u5316\u6210\u5b57\u7b26\u4e32\u4f20\u8f93 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[44,35],"tags":[],"class_list":["post-5710","post","type-post","status-publish","format-standard","hentry","category-koa","category-nodejs"],"_links":{"self":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts\/5710","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=5710"}],"version-history":[{"count":0,"href":"https:\/\/sdeno.com\/index.php?rest_route=\/wp\/v2\/posts\/5710\/revisions"}],"wp:attachment":[{"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=5710"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=5710"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/sdeno.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=5710"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}