{"id":655,"date":"2023-09-30T03:47:06","date_gmt":"2023-09-30T03:47:06","guid":{"rendered":"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/"},"modified":"2023-12-10T11:49:30","modified_gmt":"2023-12-10T11:49:30","slug":"%e5%90%a6%e5%88%99","status":"publish","type":"page","link":"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/","title":{"rendered":"\u5982\u4f55\u5728vba\u4e2d\u4f7f\u7528if not\uff1f"},"content":{"rendered":"<div class=\"excel-\" id=\"excel-725169267\"><script type=\"text\/javascript\">\r\n\tatOptions = {\r\n\t\t'key' : 'c1158f160081d6540a8409e6925dab94',\r\n\t\t'format' : 'iframe',\r\n\t\t'height' : 250,\r\n\t\t'width' : 300,\r\n\t\t'params' : {}\r\n\t};\r\n<\/script>\r\n<script type=\"text\/javascript\" src=\"\/\/www.highperformanceformat.com\/c1158f160081d6540a8409e6925dab94\/invoke.js\"><\/script><\/div> <p>\u5728 VBA \u4e2d\uff0c\u5f53\u60a8\u4f7f\u7528<a href=\"https:\/\/exceladvisor.org\/cn\/\u5982\u679c-2\/\">IF \u8bed\u53e5<\/a>\u65f6\uff0c\u5982\u679c\u60a8\u6307\u5b9a\u8981\u6d4b\u8bd5\u7684\u6761\u4ef6\u4e3a TRUE\uff0c\u5219\u5b83\u4f1a\u6267\u884c\u4e00\u884c\u4ee3\u7801\u3002\u4f46\u662f\uff0c\u5f53\u60a8\u5c06 NOT \u8fd0\u7b97\u7b26\u4e0e IF \u4e00\u8d77\u4f7f\u7528\u65f6\uff0c\u5b83\u4f1a\u68c0\u67e5\u60a8\u6307\u5b9a\u7684\u6761\u4ef6\u662f\u5426\u4e0d\u4e3a TRUE\uff0c\u5e76\u6839\u636e\u8be5\u6761\u4ef6\u6267\u884c\u4ee3\u7801\u3002<\/p><p><strong>\u8fd9\u5c31\u50cf\u6267\u884c\u76f8\u53cd\u7684 IF \u8bed\u53e5\uff0cTRUE \u53d8\u4e3a FALSE\uff0cFALSE \u53d8\u4e3a TRUE\u3002<\/strong><\/p><p>\u5047\u8bbe\u60a8\u60f3\u6d4b\u8bd5 A &lt; B \u662f\u5426\u6210\u7acb\uff0c\u5982\u679c\u6b64\u6761\u4ef6\u4e3a\u771f IF \u5c06\u8fd4\u56de TRUE\uff0c\u5bf9\u5417\uff1f\u4f46\u662f\u5f53\u4f60\u4f7f\u7528 IF NOT A &lt; B \u65f6\uff0c\u5b83\u5c06\u8fd4\u56de FALSE\u3002<\/p><p class=\"qt-tip\"><strong>\u6ce8\u610f\uff1a<\/strong> NOT \u662f\u903b\u8f91\u8fd0\u7b97\u7b26\u3002<\/p><h2 class=\"wp-block-heading\"><strong>\u4f7f\u7528 VBA IF NOT \u7684\u793a\u4f8b<\/strong><\/h2><p>\u8fd9\u91cc\u6211\u4eec\u770b\u4e00\u4e2a\u7b80\u5355\u7684\u4f8b\u5b50\u6765\u7406\u89e3\u5b83\uff1a <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-57664\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-exemple-pour-utiliser-vba-sinon.png\" sizes=\"auto, \" srcset=\"\" alt=\"\u5982\u679c\u4e0d\u4f7f\u7528 vba \u7684\u793a\u4f8b\" width=\"698\" height=\"493\"><\/figure><\/div><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub myMacro() Dim A As Range, B As Range Set A = Range(\"A1\") Set B = Range(\"B1\") If Not A &lt; B Then MsgBox \"A is not greater than B.\" Else MsgBox \"B is not greater than A.\" End If End Sub<\/code><\/pre><p>\u5728\u4e0a\u9762\u7684\u4ee3\u7801\u4e2d\uff0c\u60a8\u4f7f\u7528 NOT \u8fd0\u7b97\u7b26\u6765\u6d4b\u8bd5 B \u662f\u5426\u4e0d\u5927\u4e8e A\u3002<\/p><p>\u5982\u679c\u4f60\u770b\u6761\u4ef6\u8bed\u53e5\uff0c\u4f60\u53ef\u4ee5\u660e\u767d\uff0c\u5b9e\u9645\u8981\u6d4b\u8bd5\u7684\u6761\u4ef6\u662fB\u662f\u5426\u5927\u4e8eA\uff0c\u4f46\u7531\u4e8e\u6211\u4eec\u4f7f\u7528NOT\u8bed\u53e5\uff0c\u5982\u679c\u6761\u4ef6\u4e3aTRUE\uff0c\u5b83\u5c06\u8fd4\u56deFALSE\u3002 <\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-57662\" src=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/2-utilise-loperateur-not.png\" sizes=\"auto, \" srcset=\"\" alt=\"\" width=\"524\" height=\"285\"><\/figure><\/div><p>\u8fd9\u662f\u53e6\u4e00\u4e2a\u4f60\u53ef\u4ee5\u7528\u6765\u7406\u89e3\u5b83\u7684\u4f8b\u5b50\u3002<\/p><pre class=\"wp-block-code\"> <code class=\"language-visual-basic\" lang=\"visual-basic\">Sub myMacro() If Not ActiveSheet.Name = Sheets(\"Sheet1\").Name Then Sheets(\"Sheet1\").Activate End If End Sub<\/code><\/pre><p>\u73b0\u5728\uff0c\u5728\u6b64\u4ee3\u7801\u4e2d\uff0c\u60a8\u4f7f\u7528<strong>NOT \u548c IF<\/strong>\u6765\u67e5\u770b\u6d3b\u52a8\u5de5\u4f5c\u8868\u662f\u5426\u662f Sheet1 \uff0c\u5982\u679c\u4e0d\u662f\uff0c\u6211\u4eec\u6307\u5b9a\u7684\u4ee3\u7801<a href=\"https:\/\/exceladvisor.org\/cn\/\u6fc0\u6d3b\u8868\/\">\u884c\u5c06\u6fc0\u6d3b Sheet1<\/a> \u3002<\/p><div class=\"gb-container gb-container-4db6181c gb-container-mt\"> <a class=\"gb-button gb-button-c5897111 gb-button-text gb-button-mt-button\" href=\"https:\/\/exceladvisor.org\/cn\/\u7ef4\u5df4\/\">\u4ec0\u4e48\u662fVBA<\/a><h2 class=\"gb-headline gb-headline-665e5f6b gb-headline-text gb-headline-mt-heading\">\u76f8\u5173\u6559\u7a0b<\/h2><div class=\"gb-grid-wrapper gb-grid-wrapper-a20baf7c gb-grid-wrapper-mt-grid\"><div class=\"gb-grid-column gb-grid-column-65ddf67e\"><div class=\"gb-container gb-container-65ddf67e\"><ul><li> <a href=\"https:\/\/exceladvisor.org\/cn\/\u51fa\u53bb\u5982\u679c\/\">VBA \u9000\u51fa\u5982\u679c<\/a><\/li><li><a href=\"https:\/\/exceladvisor.org\/cn\/\u5982\u679c-2\/\">VBA IF\uff08\u5982\u679c\u5219\u5426\u5219\uff09<\/a><\/li><li> <a href=\"https:\/\/exceladvisor.org\/cn\/\u5982\u679c\u548c\/\">VBA \u5982\u679c\u548c<\/a><\/li><li><a href=\"https:\/\/exceladvisor.org\/cn\/\u5982\u679c\u6216\/\">VBA \u5982\u679c\u6216<\/a><\/li><li><a href=\"https:\/\/exceladvisor.org\/cn\/\u5d4c\u5957\u5982\u679c\/\">VBA \u5d4c\u5957 IF<\/a> <\/li><\/ul><\/div><\/div><div class=\"gb-grid-column gb-grid-column-50067b57\"><div class=\"gb-container gb-container-50067b57\"><\/div><\/div><\/div><\/div>","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"open","ping_status":"closed","template":"","meta":{"ub_ctt_via":"","footnotes":""},"class_list":["post-655","page","type-page","status-publish","hentry"],"featured_image_src":null,"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\u5982\u4f55\u5728Excel\u7684VBA\u4e2d\u4f7f\u7528IF NOT\uff1f \uff08\u6559\u7a0b 2023\uff09<\/title>\n<meta name=\"description\" content=\"\u8fd9\u5c31\u50cf\u6267\u884c\u76f8\u53cd\u7684 IF \u8bed\u53e5\uff0cTRUE \u53d8\u4e3a FALSE\uff0cFALSE \u53d8\u4e3a TRUE\u3002\u5047\u8bbe\u60a8\u60f3\u6d4b\u8bd5\u662f\u5426 A &lt; B\uff0c\u5e76\u4e14\u5982\u679c\u8fd9\u4e2a\u6761\u4ef6......\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/exceladvisor.org\/cn\/\u5426\u5219\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u5982\u4f55\u5728Excel\u7684VBA\u4e2d\u4f7f\u7528IF NOT\uff1f \uff08\u6559\u7a0b 2023\uff09\" \/>\n<meta property=\"og:description\" content=\"\u8fd9\u5c31\u50cf\u6267\u884c\u76f8\u53cd\u7684 IF \u8bed\u53e5\uff0cTRUE \u53d8\u4e3a FALSE\uff0cFALSE \u53d8\u4e3a TRUE\u3002\u5047\u8bbe\u60a8\u60f3\u6d4b\u8bd5\u662f\u5426 A &lt; B\uff0c\u5e76\u4e14\u5982\u679c\u8fd9\u4e2a\u6761\u4ef6......\" \/>\n<meta property=\"og:url\" content=\"https:\/\/exceladvisor.org\/cn\/\u5426\u5219\/\" \/>\n<meta property=\"og:site_name\" content=\"Excel Advisor\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-10T11:49:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-exemple-pour-utiliser-vba-sinon.png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/\",\"url\":\"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/\",\"name\":\"\u5982\u4f55\u5728Excel\u7684VBA\u4e2d\u4f7f\u7528IF NOT\uff1f \uff08\u6559\u7a0b 2023\uff09\",\"isPartOf\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-exemple-pour-utiliser-vba-sinon.png\",\"datePublished\":\"2023-09-30T03:47:06+00:00\",\"dateModified\":\"2023-12-10T11:49:30+00:00\",\"description\":\"\u8fd9\u5c31\u50cf\u6267\u884c\u76f8\u53cd\u7684 IF \u8bed\u53e5\uff0cTRUE \u53d8\u4e3a FALSE\uff0cFALSE \u53d8\u4e3a TRUE\u3002\u5047\u8bbe\u60a8\u60f3\u6d4b\u8bd5\u662f\u5426 A &lt; B\uff0c\u5e76\u4e14\u5982\u679c\u8fd9\u4e2a\u6761\u4ef6......\",\"breadcrumb\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/#primaryimage\",\"url\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-exemple-pour-utiliser-vba-sinon.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-exemple-pour-utiliser-vba-sinon.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u5bb6\",\"item\":\"https:\/\/exceladvisor.org\/cn\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u5982\u4f55\u5728vba\u4e2d\u4f7f\u7528if not\uff1f\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/#website\",\"url\":\"https:\/\/exceladvisor.org\/cn\/\",\"name\":\"Excel Advisor\",\"description\":\"\u60a8\u7684\u6570\u636e\u7edf\u6cbb\u7ec8\u6781\u6307\u5357\",\"publisher\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/exceladvisor.org\/cn\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/#organization\",\"name\":\"Excel Advisor\",\"url\":\"https:\/\/exceladvisor.org\/cn\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\/\/exceladvisor.org\/cn\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/exceladvisor.org\/cn\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"contentUrl\":\"https:\/\/exceladvisor.org\/cn\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png\",\"width\":105,\"height\":36,\"caption\":\"Excel Advisor\"},\"image\":{\"@id\":\"https:\/\/exceladvisor.org\/cn\/#\/schema\/logo\/image\/\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u5982\u4f55\u5728Excel\u7684VBA\u4e2d\u4f7f\u7528IF NOT\uff1f \uff08\u6559\u7a0b 2023\uff09","description":"\u8fd9\u5c31\u50cf\u6267\u884c\u76f8\u53cd\u7684 IF \u8bed\u53e5\uff0cTRUE \u53d8\u4e3a FALSE\uff0cFALSE \u53d8\u4e3a TRUE\u3002\u5047\u8bbe\u60a8\u60f3\u6d4b\u8bd5\u662f\u5426 A &lt; B\uff0c\u5e76\u4e14\u5982\u679c\u8fd9\u4e2a\u6761\u4ef6......","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/exceladvisor.org\/cn\/\u5426\u5219\/","og_locale":"zh_CN","og_type":"article","og_title":"\u5982\u4f55\u5728Excel\u7684VBA\u4e2d\u4f7f\u7528IF NOT\uff1f \uff08\u6559\u7a0b 2023\uff09","og_description":"\u8fd9\u5c31\u50cf\u6267\u884c\u76f8\u53cd\u7684 IF \u8bed\u53e5\uff0cTRUE \u53d8\u4e3a FALSE\uff0cFALSE \u53d8\u4e3a TRUE\u3002\u5047\u8bbe\u60a8\u60f3\u6d4b\u8bd5\u662f\u5426 A &lt; B\uff0c\u5e76\u4e14\u5982\u679c\u8fd9\u4e2a\u6761\u4ef6......","og_url":"https:\/\/exceladvisor.org\/cn\/\u5426\u5219\/","og_site_name":"Excel Advisor","article_modified_time":"2023-12-10T11:49:30+00:00","og_image":[{"url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-exemple-pour-utiliser-vba-sinon.png","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"1 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/","url":"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/","name":"\u5982\u4f55\u5728Excel\u7684VBA\u4e2d\u4f7f\u7528IF NOT\uff1f \uff08\u6559\u7a0b 2023\uff09","isPartOf":{"@id":"https:\/\/exceladvisor.org\/cn\/#website"},"primaryImageOfPage":{"@id":"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/#primaryimage"},"image":{"@id":"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/#primaryimage"},"thumbnailUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-exemple-pour-utiliser-vba-sinon.png","datePublished":"2023-09-30T03:47:06+00:00","dateModified":"2023-12-10T11:49:30+00:00","description":"\u8fd9\u5c31\u50cf\u6267\u884c\u76f8\u53cd\u7684 IF \u8bed\u53e5\uff0cTRUE \u53d8\u4e3a FALSE\uff0cFALSE \u53d8\u4e3a TRUE\u3002\u5047\u8bbe\u60a8\u60f3\u6d4b\u8bd5\u662f\u5426 A &lt; B\uff0c\u5e76\u4e14\u5982\u679c\u8fd9\u4e2a\u6761\u4ef6......","breadcrumb":{"@id":"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/"]}]},{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/#primaryimage","url":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-exemple-pour-utiliser-vba-sinon.png","contentUrl":"https:\/\/exceladvisor.org\/wp-content\/uploads\/2023\/08\/1-exemple-pour-utiliser-vba-sinon.png"},{"@type":"BreadcrumbList","@id":"https:\/\/exceladvisor.org\/cn\/%e5%90%a6%e5%88%99\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u5bb6","item":"https:\/\/exceladvisor.org\/cn\/"},{"@type":"ListItem","position":2,"name":"\u5982\u4f55\u5728vba\u4e2d\u4f7f\u7528if not\uff1f"}]},{"@type":"WebSite","@id":"https:\/\/exceladvisor.org\/cn\/#website","url":"https:\/\/exceladvisor.org\/cn\/","name":"Excel Advisor","description":"\u60a8\u7684\u6570\u636e\u7edf\u6cbb\u7ec8\u6781\u6307\u5357","publisher":{"@id":"https:\/\/exceladvisor.org\/cn\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/exceladvisor.org\/cn\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"https:\/\/exceladvisor.org\/cn\/#organization","name":"Excel Advisor","url":"https:\/\/exceladvisor.org\/cn\/","logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/exceladvisor.org\/cn\/#\/schema\/logo\/image\/","url":"https:\/\/exceladvisor.org\/cn\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","contentUrl":"https:\/\/exceladvisor.org\/cn\/wp-content\/uploads\/2023\/12\/exceladvisor.org_.png","width":105,"height":36,"caption":"Excel Advisor"},"image":{"@id":"https:\/\/exceladvisor.org\/cn\/#\/schema\/logo\/image\/"}}]}},"yoast_meta":{"yoast_wpseo_title":"","yoast_wpseo_metadesc":"","yoast_wpseo_canonical":""},"_links":{"self":[{"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/pages\/655","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/comments?post=655"}],"version-history":[{"count":1,"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/pages\/655\/revisions"}],"predecessor-version":[{"id":1234,"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/pages\/655\/revisions\/1234"}],"wp:attachment":[{"href":"https:\/\/exceladvisor.org\/cn\/wp-json\/wp\/v2\/media?parent=655"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}