{"id":1000652,"date":"2024-12-27T09:52:03","date_gmt":"2024-12-27T01:52:03","guid":{"rendered":"https:\/\/docs.pingcode.com\/ask\/ask-ask\/1000652.html"},"modified":"2024-12-27T09:52:07","modified_gmt":"2024-12-27T01:52:07","slug":"python-ascii%e5%a6%82%e4%bd%95%e5%8f%98%e4%b8%ba%e6%b1%89%e5%ad%97","status":"publish","type":"post","link":"https:\/\/docs.pingcode.com\/ask\/1000652.html","title":{"rendered":"python ascii\u5982\u4f55\u53d8\u4e3a\u6c49\u5b57"},"content":{"rendered":"<p style=\"text-align:center;\" ><img decoding=\"async\" src=\"https:\/\/cdn-kb.worktile.com\/kb\/wp-content\/uploads\/2024\/04\/25075146\/dd4b7036-a40d-4578-8eba-b40fa04d2aab.webp\" alt=\"python ascii\u5982\u4f55\u53d8\u4e3a\u6c49\u5b57\" \/><\/p>\n<p><p> <strong>\u5c06Python ASCII\u8f6c\u6362\u4e3a\u6c49\u5b57\u7684\u65b9\u6cd5\u5305\u62ec\uff1a\u4f7f\u7528\u7f16\u7801\u89e3\u7801\u3001\u901a\u8fc7\u5b57\u5178\u6620\u5c04\u3001\u5229\u7528\u7b2c\u4e09\u65b9\u5e93\u7b49\u3002\u5176\u4e2d\uff0c\u4f7f\u7528\u7f16\u7801\u89e3\u7801\u662f\u4e00\u79cd\u5e38\u7528\u7684\u65b9\u6cd5\u3002<\/strong>\u6211\u4eec\u53ef\u4ee5\u901a\u8fc7Python\u5185\u5efa\u7684<code>chr()<\/code>\u548c<code>ord()<\/code>\u51fd\u6570\u6765\u8fdb\u884c\u7f16\u7801\u548c\u89e3\u7801\u64cd\u4f5c\u3002\u6b64\u5916\uff0c\u8fd8\u53ef\u4ee5\u501f\u52a9Unicode\u6765\u5b9e\u73b0\u66f4\u590d\u6742\u7684\u8f6c\u6362\u3002\u63a5\u4e0b\u6765\uff0c\u5c06\u8be6\u7ec6\u4ecb\u7ecd\u8fd9\u4e9b\u65b9\u6cd5\u3002<\/p>\n<\/p>\n<p><p>\u4e00\u3001\u4f7f\u7528\u7f16\u7801\u89e3\u7801<\/p>\n<\/p>\n<p><p>Python\u4e2d\u7684\u5b57\u7b26\u4e32\u53ef\u4ee5\u4f7f\u7528\u4e0d\u540c\u7684\u7f16\u7801\u65b9\u5f0f\u8fdb\u884c\u5904\u7406\u3002ASCII\u7f16\u7801\u4ec5\u652f\u6301\u82f1\u6587\u5b57\u6bcd\u548c\u57fa\u672c\u7b26\u53f7\uff0c\u56e0\u6b64\u8981\u5c06ASCII\u8f6c\u6362\u4e3a\u6c49\u5b57\uff0c\u9700\u8981\u4f7f\u7528Unicode\u7f16\u7801\u3002<\/p>\n<\/p>\n<ol>\n<li>\n<p><strong>\u7f16\u7801\u4e0e\u89e3\u7801<\/strong><\/p>\n<\/p>\n<p><p>\u5728Python\u4e2d\uff0c\u53ef\u4ee5\u4f7f\u7528<code>ord()<\/code>\u51fd\u6570\u5c06\u5b57\u7b26\u8f6c\u6362\u4e3aASCII\u7801\uff0c\u4f7f\u7528<code>chr()<\/code>\u51fd\u6570\u5c06ASCII\u7801\u8f6c\u6362\u4e3a\u5b57\u7b26\u3002\u5bf9\u4e8e\u6c49\u5b57\uff0c\u901a\u5e38\u4f7f\u7528Unicode\u7f16\u7801\u3002\u53ef\u4ee5\u901a\u8fc7\u4e0b\u9762\u7684\u4f8b\u5b50\u6f14\u793a\u5982\u4f55\u5c06ASCII\u7f16\u7801\u8f6c\u6362\u4e3a\u5bf9\u5e94\u7684\u6c49\u5b57\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u5c06\u5b57\u7b26\u8f6c\u6362\u4e3aASCII\u7801<\/p>\n<p>ascii_code = ord(&#39;A&#39;)<\/p>\n<p>print(ascii_code)  # \u8f93\u51fa\uff1a65<\/p>\n<h2><strong>\u5c06ASCII\u7801\u8f6c\u6362\u4e3a\u5b57\u7b26<\/strong><\/h2>\n<p>character = chr(65)<\/p>\n<p>print(character)  # \u8f93\u51fa\uff1aA<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5bf9\u4e8e\u6c49\u5b57\uff0c\u6211\u4eec\u9700\u8981\u4e86\u89e3\u5176Unicode\u7801\uff0c\u5e76\u4f7f\u7528<code>chr()<\/code>\u51fd\u6570\u8fdb\u884c\u8f6c\u6362\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u5c06Unicode\u7801\u8f6c\u6362\u4e3a\u6c49\u5b57<\/p>\n<p>hanzi = chr(0x4e2d)<\/p>\n<p>print(hanzi)  # \u8f93\u51fa\uff1a\u4e2d<\/p>\n<p><\/code><\/pre>\n<\/p>\n<\/li>\n<li>\n<p><strong>\u5229\u7528Unicode\u8fdb\u884c\u8f6c\u6362<\/strong><\/p>\n<\/p>\n<p><p>Unicode\u662f\u4e00\u4e2a\u5b57\u7b26\u96c6\uff0c\u53ef\u4ee5\u8868\u793a\u5168\u7403\u5927\u591a\u6570\u4e66\u5199\u7cfb\u7edf\u7684\u5b57\u7b26\u3002\u901a\u8fc7Unicode\u7801\uff0c\u53ef\u4ee5\u65b9\u4fbf\u5730\u5c06ASCII\u8f6c\u6362\u4e3a\u6c49\u5b57\u3002\u901a\u5e38\uff0c\u6c49\u5b57\u7684Unicode\u7f16\u7801\u8303\u56f4\u57280x4E00\u52300x9FFF\u4e4b\u95f4\u3002<\/p>\n<\/p>\n<p><p>\u53ef\u4ee5\u901a\u8fc7\u5982\u4e0b\u793a\u4f8b\u8fdb\u884c\u8f6c\u6362\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u5c06\u591a\u4e2aUnicode\u7801\u8f6c\u6362\u4e3a\u6c49\u5b57\u5b57\u7b26\u4e32<\/p>\n<p>unicode_list = [0x4e2d, 0x56fd]<\/p>\n<p>hanzi_string = &#39;&#39;.join(chr(code) for code in unicode_list)<\/p>\n<p>print(hanzi_string)  # \u8f93\u51fa\uff1a\u4e2d\u56fd<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u5728\u5b9e\u9645\u5e94\u7528\u4e2d\uff0c\u6211\u4eec\u53ef\u4ee5\u901a\u8fc7Unicode\u8868\u83b7\u53d6\u6c49\u5b57\u7684\u7f16\u7801\uff0c\u7136\u540e\u4f7f\u7528\u4e0a\u8ff0\u65b9\u6cd5\u8fdb\u884c\u8f6c\u6362\u3002<\/p>\n<\/p>\n<\/li>\n<\/ol>\n<p><p>\u4e8c\u3001\u901a\u8fc7\u5b57\u5178\u6620\u5c04<\/p>\n<\/p>\n<p><p>\u5bf9\u4e8e\u7279\u5b9a\u7684ASCII\u7801\u4e0e\u6c49\u5b57\u7684\u5bf9\u5e94\u5173\u7cfb\uff0c\u53ef\u4ee5\u4f7f\u7528\u5b57\u5178\u8fdb\u884c\u6620\u5c04\u3002\u5b57\u5178\u662f\u4e00\u79cd\u952e\u503c\u5bf9\u7684\u6570\u636e\u7ed3\u6784\uff0c\u53ef\u4ee5\u65b9\u4fbf\u5730\u5b9e\u73b0ASCII\u5230\u6c49\u5b57\u7684\u8f6c\u6362\u3002<\/p>\n<\/p>\n<ol>\n<li>\n<p><strong>\u5efa\u7acb\u6620\u5c04\u5b57\u5178<\/strong><\/p>\n<\/p>\n<p><p>\u9996\u5148\uff0c\u6211\u4eec\u9700\u8981\u5efa\u7acb\u4e00\u4e2a\u5b57\u5178\uff0c\u5176\u4e2d\u952e\u4e3aASCII\u7801\uff0c\u503c\u4e3a\u5bf9\u5e94\u7684\u6c49\u5b57\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u793a\u4f8b\u5b57\u5178<\/p>\n<p>ascii_to_hanzi = {<\/p>\n<p>    65: &#39;\u4e2d&#39;,<\/p>\n<p>    66: &#39;\u56fd&#39;<\/p>\n<p>}<\/p>\n<h2><strong>\u901a\u8fc7\u5b57\u5178\u8fdb\u884c\u8f6c\u6362<\/strong><\/h2>\n<p>ascii_code = 65<\/p>\n<p>hanzi = ascii_to_hanzi.get(ascii_code, &#39;\u672a\u77e5\u5b57\u7b26&#39;)<\/p>\n<p>print(hanzi)  # \u8f93\u51fa\uff1a\u4e2d<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u8fd9\u79cd\u65b9\u6cd5\u9002\u7528\u4e8e\u5df2\u77e5\u7684\u5c11\u91cfASCII\u4e0e\u6c49\u5b57\u7684\u6620\u5c04\u5173\u7cfb\u3002<\/p>\n<\/p>\n<\/li>\n<li>\n<p><strong>\u6269\u5c55\u5b57\u5178<\/strong><\/p>\n<\/p>\n<p><p>\u53ef\u4ee5\u8fdb\u4e00\u6b65\u6269\u5c55\u5b57\u5178\uff0c\u652f\u6301\u66f4\u591a\u5b57\u7b26\u7684\u8f6c\u6362\u3002\u8fd9\u9700\u8981\u6839\u636e\u7279\u5b9a\u7684\u5e94\u7528\u573a\u666f\uff0c\u624b\u52a8\u5efa\u7acb\u6216\u901a\u8fc7\u6570\u636e\u6587\u4ef6\u52a0\u8f7d\u6620\u5c04\u5173\u7cfb\u3002<\/p>\n<\/p>\n<\/li>\n<\/ol>\n<p><p>\u4e09\u3001\u5229\u7528\u7b2c\u4e09\u65b9\u5e93<\/p>\n<\/p>\n<p><p>\u5728Python\u4e2d\uff0c\u6709\u4e00\u4e9b\u7b2c\u4e09\u65b9\u5e93\u53ef\u4ee5\u5e2e\u52a9\u6211\u4eec\u8fdb\u884c\u7f16\u7801\u8f6c\u6362\u3002\u8fd9\u4e9b\u5e93\u63d0\u4f9b\u4e86\u66f4\u4e3a\u9ad8\u7ea7\u7684\u529f\u80fd\u548c\u66f4\u4e3a\u4e30\u5bcc\u7684\u5b57\u7b26\u96c6\u652f\u6301\u3002<\/p>\n<\/p>\n<ol>\n<li>\n<p><strong>\u4f7f\u7528<code>pypinyin<\/code>\u5e93<\/strong><\/p>\n<\/p>\n<p><p><code>pypinyin<\/code>\u662f\u4e00\u4e2a\u7528\u4e8e\u6c49\u5b57\u4e0e\u62fc\u97f3\u8f6c\u6362\u7684\u5e93\uff0c\u53ef\u4ee5\u652f\u6301\u591a\u79cd\u8f6c\u6362\u65b9\u5f0f\u3002\u867d\u7136\u5176\u4e3b\u8981\u529f\u80fd\u662f\u62fc\u97f3\u8f6c\u6362\uff0c\u4f46\u901a\u8fc7\u62fc\u97f3\u6211\u4eec\u53ef\u4ee5\u95f4\u63a5\u5b9e\u73b0ASCII\u4e0e\u6c49\u5b57\u7684\u8f6c\u6362\u3002<\/p>\n<\/p>\n<p><p>\u5b89\u88c5<code>pypinyin<\/code>\u5e93\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-bash\">pip install pypinyin<\/p>\n<p><\/code><\/pre>\n<\/p>\n<p><p>\u4f7f\u7528\u793a\u4f8b\uff1a<\/p>\n<\/p>\n<p><pre><code class=\"language-python\">from pypinyin import pinyin, lazy_pinyin<\/p>\n<h2><strong>\u5c06\u6c49\u5b57\u8f6c\u6362\u4e3a\u62fc\u97f3<\/strong><\/h2>\n<p>print(pinyin(&#39;\u4e2d\u56fd&#39;))  # \u8f93\u51fa\uff1a[[&#39;zhong&#39;], [&#39;guo&#39;]]<\/p>\n<h2><strong>\u4f7f\u7528ASCII\u7801\u6a21\u62df\u62fc\u97f3\u8f6c\u6362\uff08\u95f4\u63a5\u65b9\u5f0f\uff09<\/strong><\/h2>\n<p>ascii_to_pinyin = {65: &#39;zhong&#39;, 66: &#39;guo&#39;}<\/p>\n<p>ascii_code = 65<\/p>\n<p>pinyin_value = ascii_to_pinyin.get(ascii_code)<\/p>\n<p>print(pinyin_value)  # \u8f93\u51fa\uff1azhong<\/p>\n<p><\/code><\/pre>\n<\/p>\n<\/li>\n<li>\n<p><strong>\u5176\u4ed6\u5e93<\/strong><\/p>\n<\/p>\n<p><p>\u9664\u4e86<code>pypinyin<\/code>\uff0c\u8fd8\u6709\u5176\u4ed6\u5e93\u53ef\u4ee5\u7528\u4e8e\u5b57\u7b26\u7f16\u7801\u8f6c\u6362\uff0c\u5982<code>unidecode<\/code>\u7b49\u3002\u8fd9\u4e9b\u5e93\u53ef\u4ee5\u6839\u636e\u5177\u4f53\u9700\u6c42\u8fdb\u884c\u9009\u62e9\u548c\u4f7f\u7528\u3002<\/p>\n<\/p>\n<\/li>\n<\/ol>\n<p><p>\u56db\u3001\u5b9e\u9645\u5e94\u7528\u4e2d\u7684\u793a\u4f8b<\/p>\n<\/p>\n<p><p>\u5728\u5b9e\u9645\u5e94\u7528\u4e2d\uff0cASCII\u4e0e\u6c49\u5b57\u7684\u8f6c\u6362\u5e38\u7528\u4e8e\u6587\u672c\u5904\u7406\u3001\u6570\u636e\u5206\u6790\u4ee5\u53ca\u81ea\u7136\u8bed\u8a00\u5904\u7406\u7b49\u9886\u57df\u3002\u4e0b\u9762\u4ee5\u4e00\u4e2a\u7b80\u5355\u7684\u6587\u672c\u5904\u7406\u793a\u4f8b\u8bf4\u660e\u5982\u4f55\u5e94\u7528\u4e0a\u8ff0\u65b9\u6cd5\u3002<\/p>\n<\/p>\n<ol>\n<li>\n<p><strong>\u6587\u672c\u8f6c\u6362<\/strong><\/p>\n<\/p>\n<p><p>\u5047\u8bbe\u6211\u4eec\u6709\u4e00\u4e2a\u6587\u672c\u6587\u4ef6\uff0c\u5176\u4e2d\u90e8\u5206\u5185\u5bb9\u4f7f\u7528ASCII\u8868\u793a\uff0c\u6211\u4eec\u9700\u8981\u5c06\u5176\u8f6c\u6362\u4e3a\u6c49\u5b57\u3002<\/p>\n<\/p>\n<p><pre><code class=\"language-python\"># \u5047\u8bbe\u6587\u672c\u5185\u5bb9\u4ee5ASCII\u7801\u5b58\u50a8<\/p>\n<p>ascii_content = [65, 66, 67]<\/p>\n<h2><strong>\u4f7f\u7528\u6620\u5c04\u5b57\u5178\u8fdb\u884c\u8f6c\u6362<\/strong><\/h2>\n<p>ascii_to_hanzi = {<\/p>\n<p>    65: &#39;\u4e2d&#39;,<\/p>\n<p>    66: &#39;\u56fd&#39;,<\/p>\n<p>    67: &#39;\u4eba&#39;<\/p>\n<p>}<\/p>\n<h2><strong>\u8f6c\u6362\u8fc7\u7a0b<\/strong><\/h2>\n<p>hanzi_content = &#39;&#39;.join(ascii_to_hanzi.get(code, &#39;&#39;) for code in ascii_content)<\/p>\n<p>print(hanzi_content)  # \u8f93\u51fa\uff1a\u4e2d\u56fd\u4eba<\/p>\n<p><\/code><\/pre>\n<\/p>\n<\/li>\n<li>\n<p><strong>\u81ea\u7136\u8bed\u8a00\u5904\u7406\u4e2d\u7684\u5e94\u7528<\/strong><\/p>\n<\/p>\n<p><p>\u5728\u81ea\u7136\u8bed\u8a00\u5904\u7406\uff08NLP\uff09\u9886\u57df\uff0c\u5b57\u7b26\u7f16\u7801\u8f6c\u6362\u662f\u4e00\u4e2a\u5e38\u89c1\u9700\u6c42\u3002\u53ef\u4ee5\u901a\u8fc7\u4e0a\u8ff0\u65b9\u6cd5\u5b9e\u73b0\u591a\u79cd\u8bed\u8a00\u73af\u5883\u4e0b\u7684\u6587\u672c\u5904\u7406\u3002<\/p>\n<\/p>\n<\/li>\n<\/ol>\n<p><p>\u603b\u7ed3<\/p>\n<\/p>\n<p><p>\u5c06Python ASCII\u8f6c\u6362\u4e3a\u6c49\u5b57\u53ef\u4ee5\u901a\u8fc7\u591a\u79cd\u65b9\u6cd5\u5b9e\u73b0\uff0c\u5305\u62ec\u7f16\u7801\u89e3\u7801\u3001\u5b57\u5178\u6620\u5c04\u548c\u7b2c\u4e09\u65b9\u5e93\u3002\u6bcf\u79cd\u65b9\u6cd5\u90fd\u6709\u5176\u9002\u7528\u573a\u666f\u548c\u4f18\u7f3a\u70b9\u3002\u5728\u5b9e\u9645\u5e94\u7528\u4e2d\uff0c\u5e94\u6839\u636e\u5177\u4f53\u9700\u6c42\u9009\u62e9\u5408\u9002\u7684\u65b9\u6cd5\uff0c\u5e76\u7ed3\u5408\u5176\u4ed6\u6280\u672f\u624b\u6bb5\u8fdb\u884c\u7efc\u5408\u5e94\u7528\u3002\u65e0\u8bba\u9009\u62e9\u4f55\u79cd\u65b9\u6cd5\uff0c\u7406\u89e3\u5b57\u7b26\u7f16\u7801\u7684\u57fa\u672c\u539f\u7406\u548c\u673a\u5236\u90fd\u662f\u81f3\u5173\u91cd\u8981\u7684\u3002<\/p>\n<\/p>\n<h2><strong>\u76f8\u5173\u95ee\u7b54FAQs\uff1a<\/strong><\/h2>\n<p> <strong>\u5982\u4f55\u5c06ASCII\u7801\u8f6c\u6362\u4e3a\u6c49\u5b57\uff1f<\/strong><br \/>\u8981\u5c06ASCII\u7801\u8f6c\u6362\u4e3a\u6c49\u5b57\uff0c\u9996\u5148\u9700\u8981\u4e86\u89e3ASCII\u7801\u548c\u6c49\u5b57\u7684\u7f16\u7801\u65b9\u5f0f\u3002ASCII\u7801\u901a\u5e38\u53ea\u5305\u542b\u82f1\u6587\u5b57\u7b26\uff0c\u800c\u6c49\u5b57\u5219\u4f7f\u7528Unicode\u7f16\u7801\u3002\u901a\u5e38\u60c5\u51b5\u4e0b\uff0c\u60a8\u53ef\u4ee5\u901a\u8fc7Python\u4e2d\u7684<code>chr()<\/code>\u51fd\u6570\u5c06Unicode\u7f16\u7801\u8f6c\u6362\u4e3a\u6c49\u5b57\u3002\u5982\u679c\u60a8\u6709ASCII\u7801\u7684\u5341\u8fdb\u5236\u6216\u5341\u516d\u8fdb\u5236\u8868\u793a\uff0c\u53ef\u4ee5\u5148\u5c06\u5176\u8f6c\u6362\u4e3a\u5bf9\u5e94\u7684Unicode\u7f16\u7801\uff0c\u7136\u540e\u4f7f\u7528<code>chr()<\/code>\u51fd\u6570\u83b7\u53d6\u6c49\u5b57\u3002<\/p>\n<p><strong>\u662f\u5426\u53ef\u4ee5\u7528Python\u4e2d\u7684\u7279\u5b9a\u5e93\u6765\u5b8c\u6210ASCII\u5230\u6c49\u5b57\u7684\u8f6c\u6362\uff1f<\/strong><br \/>\u662f\u7684\uff0cPython\u4e2d\u6709\u8bb8\u591a\u5e93\u53ef\u4ee5\u5e2e\u52a9\u8fdb\u884c\u5b57\u7b26\u7f16\u7801\u8f6c\u6362\uff0c\u4f8b\u5982<code>codecs<\/code>\u548c<code>chardet<\/code>\u5e93\u3002\u8fd9\u4e9b\u5e93\u53ef\u4ee5\u5e2e\u52a9\u60a8\u8bc6\u522b\u548c\u8f6c\u6362\u4e0d\u540c\u7f16\u7801\u4e4b\u95f4\u7684\u5b57\u7b26\uff0c\u60a8\u53ef\u4ee5\u4f7f\u7528\u5b83\u4eec\u6765\u5904\u7406ASCII\u4e0e\u6c49\u5b57\u4e4b\u95f4\u7684\u8f6c\u6362\u3002\u4e0d\u8fc7\uff0c\u8bb0\u5f97ASCII\u672c\u8eab\u5e76\u4e0d\u5305\u542b\u6c49\u5b57\uff0c\u56e0\u6b64\u9700\u8981\u5148\u5c06\u5176\u8f6c\u6362\u4e3a\u652f\u6301\u6c49\u5b57\u7684\u7f16\u7801\u3002<\/p>\n<p><strong>\u5728\u8f6c\u6362\u8fc7\u7a0b\u4e2d\u53ef\u80fd\u9047\u5230\u54ea\u4e9b\u5e38\u89c1\u9519\u8bef\uff1f<\/strong><br \/>\u5728\u8f6c\u6362\u8fc7\u7a0b\u4e2d\uff0c\u5e38\u89c1\u9519\u8bef\u5305\u62ec\u5b57\u7b26\u7f16\u7801\u4e0d\u5339\u914d\u3001\u8f93\u5165\u4e0d\u5408\u6cd5\u7b49\u95ee\u9898\u3002\u4f8b\u5982\uff0c\u5982\u679c\u60a8\u5c1d\u8bd5\u5c06\u4e0d\u5728ASCII\u8303\u56f4\u5185\u7684\u5b57\u7b26\u76f4\u63a5\u8f6c\u6362\u4e3a\u6c49\u5b57\uff0c\u53ef\u80fd\u4f1a\u51fa\u73b0\u9519\u8bef\u3002\u786e\u4fdd\u60a8\u8f93\u5165\u7684ASCII\u7801\u6216Unicode\u7f16\u7801\u662f\u6b63\u786e\u7684\uff0c\u5e76\u4f7f\u7528\u9002\u5f53\u7684\u65b9\u6cd5\u8fdb\u884c\u8f6c\u6362\uff0c\u4ee5\u907f\u514d\u8fd9\u4e9b\u95ee\u9898\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"\u5c06Python ASCII\u8f6c\u6362\u4e3a\u6c49\u5b57\u7684\u65b9\u6cd5\u5305\u62ec\uff1a\u4f7f\u7528\u7f16\u7801\u89e3\u7801\u3001\u901a\u8fc7\u5b57\u5178\u6620\u5c04\u3001\u5229\u7528\u7b2c\u4e09\u65b9\u5e93\u7b49\u3002\u5176\u4e2d\uff0c\u4f7f\u7528\u7f16\u7801\u89e3\u7801 [&hellip;]","protected":false},"author":3,"featured_media":1000668,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[37],"tags":[],"acf":[],"_links":{"self":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1000652"}],"collection":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/comments?post=1000652"}],"version-history":[{"count":"1","href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1000652\/revisions"}],"predecessor-version":[{"id":1000671,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/posts\/1000652\/revisions\/1000671"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media\/1000668"}],"wp:attachment":[{"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/media?parent=1000652"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/categories?post=1000652"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/docs.pingcode.com\/wp-json\/wp\/v2\/tags?post=1000652"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}