{"id":5639,"date":"2023-01-06T11:03:04","date_gmt":"2023-01-06T03:03:04","guid":{"rendered":"https:\/\/badgameshow.com\/steven\/?p=5639"},"modified":"2023-01-06T11:03:04","modified_gmt":"2023-01-06T03:03:04","slug":"%e5%88%a9%e7%94%a8react-js%e5%88%a4%e6%96%b7ipv6%e5%9c%b0%e5%9d%80%e5%ad%97%e7%ac%a6%e4%b8%b2%e7%9a%84%e6%9c%89%e6%95%88%e6%80%a7","status":"publish","type":"post","link":"https:\/\/badgameshow.com\/steven\/react-js\/%e5%88%a9%e7%94%a8react-js%e5%88%a4%e6%96%b7ipv6%e5%9c%b0%e5%9d%80%e5%ad%97%e7%ac%a6%e4%b8%b2%e7%9a%84%e6%9c%89%e6%95%88%e6%80%a7\/","title":{"rendered":"\u5229\u7528React.JS\u5224\u65b7IPv6\u5730\u5740\u5b57\u7b26\u4e32\u7684\u6709\u6548\u6027"},"content":{"rendered":"<p><meta name=\"keywords\" content=\"React.JS, IPv6, isValidIpv6\"><\/p>\n<p>\u5728\u7db2\u8def\u4e0a\uff0cIPv6\u5730\u5740\u662f\u4e00\u7a2e\u5e38\u898b\u7684\u7db2\u8def\u5730\u5740\uff0c\u5b83\u53ef\u4ee5\u7528\u65bc\u7db2\u8def\u901a\u4fe1\u3002\u6709\u6642\u5019\uff0c\u6211\u5011\u9700\u8981\u6aa2\u67e5\u4e00\u500b\u5b57\u4e32\u662f\u5426\u7b26\u5408IPv6\u5730\u5740\u7684\u898f\u7bc4\uff0c\u800c\u4f7f\u7528React.JS\u53ef\u4ee5\u8f15\u9b06\u5730\u5b8c\u6210\u9019\u500b\u4efb\u52d9\u3002<\/p>\n<h2>\u4f7f\u7528React.JS\u4f86\u6aa2\u67e5IPv6\u5730\u5740<\/h2>\n<p>React.JS\u662f\u4e00\u500b\u7528\u65bc\u69cb\u5efa\u7528\u6236\u7aef\u61c9\u7528\u7a0b\u5f0f\u7684JavaScript\u5eab\uff0c\u5b83\u53ef\u4ee5\u8b93\u958b\u767c\u8005\u5feb\u901f\u69cb\u5efa\u51fa\u9ad8\u54c1\u8cea\u7684\u61c9\u7528\u7a0b\u5f0f\u3002\u5728\u6aa2\u67e5IPv6\u5730\u5740\u7684\u4efb\u52d9\u4e0a\uff0c\u6211\u5011\u53ef\u4ee5\u4f7f\u7528React.JS\u4f86\u5be6\u73fe\u3002<\/p>\n<h2>\u5982\u4f55\u4f7f\u7528React.JS\u4f86\u6aa2\u67e5IPv6\u5730\u5740<\/h2>\n<p>\u9996\u5148\uff0c\u6211\u5011\u9700\u8981\u5b89\u88ddReact.JS\uff0c\u53ef\u4ee5\u4f7f\u7528npm\u6216yarn\u4f86\u5b89\u88dd\u3002\u5b89\u88dd\u5b8c\u6210\u5f8c\uff0c\u6211\u5011\u53ef\u4ee5\u4f7f\u7528\u4ee5\u4e0b\u7a0b\u5f0f\u78bc\u4f86\u6aa2\u67e5\u4e00\u500b\u5b57\u4e32\u662f\u5426\u7b26\u5408IPv6\u5730\u5740\u7684\u898f\u7bc4\uff1a<\/p>\n<pre class=\"brush: javascript\">\nfunction isValidIpv6(str) {\n  const regex = \/^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$\/;\n  return regex.test(str);\n}\n<\/pre>\n<p>\u4e0a\u9762\u7684\u7a0b\u5f0f\u78bc\u6703\u6aa2\u67e5\u50b3\u5165\u7684\u5b57\u4e32\u662f\u5426\u7b26\u5408IPv6\u5730\u5740\u7684\u898f\u7bc4\uff0c\u5982\u679c\u7b26\u5408\uff0c\u5247\u8fd4\u56detrue\uff0c\u5426\u5247\u8fd4\u56defalse\u3002<\/p>\n<p><!--more--><\/p>\n<h2>\u7e3d\u7d50<\/h2>\n<p>\u4f7f\u7528React.JS\u53ef\u4ee5\u8f15\u9b06\u5730\u6aa2\u67e5\u4e00\u500b\u5b57\u4e32\u662f\u5426\u7b26\u5408IPv6\u5730\u5740\u7684\u898f\u7bc4\uff0c\u53ea\u9700\u8981\u5b89\u88ddReact.JS\uff0c\u7136\u5f8c\u4f7f\u7528\u4e0a\u9762\u7684\u7a0b\u5f0f\u78bc\u5373\u53ef\u5b8c\u6210\u6aa2\u67e5\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u672c\u6587\u5c07\u4ecb\u7d39\u5982\u4f55\u5229\u7528React.JS\u4f86\u5224\u65b7IPv6\u5730\u5740\u5b57\u7b26\u4e32\u7684\u6709\u6548\u6027\uff0c\u4e26\u63d0\u4f9b\u4e00\u4e9b\u7c21\u55ae\u7684\u7a0b\u5f0f\u78bc\u793a\u4f8b\uff0c\u8b93\u8b80\u8005\u53ef\u4ee5\u8f15\u9b06\u5730\u5be6\u73fe\u8a72\u529f\u80fd\u3002<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[184,183],"tags":[182,181],"class_list":["post-5639","post","type-post","status-publish","format-standard","hentry","category-react","category-react-js","tag-react","tag-react-js"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_shortlink":"https:\/\/wp.me\/pcFK27-1sX","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/posts\/5639","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/comments?post=5639"}],"version-history":[{"count":1,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/posts\/5639\/revisions"}],"predecessor-version":[{"id":5640,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/posts\/5639\/revisions\/5640"}],"wp:attachment":[{"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/media?parent=5639"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/categories?post=5639"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/tags?post=5639"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}