{"id":5258,"date":"2023-01-05T12:19:03","date_gmt":"2023-01-05T04:19:03","guid":{"rendered":"https:\/\/badgameshow.com\/steven\/?p=5258"},"modified":"2023-01-05T12:19:03","modified_gmt":"2023-01-05T04:19:03","slug":"%e5%ad%b8%e7%bf%92%e5%a6%82%e4%bd%95%e4%bd%bf%e7%94%a8typescript%e5%ad%97%e4%b8%b2%e7%9a%84%e6%b1%82%e6%98%af%e5%90%a6%e7%82%ba%e7%a9%ba%e7%99%bd%e5%ad%97%e7%ac%a6%e4%b8%b2isblank","status":"publish","type":"post","link":"https:\/\/badgameshow.com\/steven\/typescript\/%e5%ad%b8%e7%bf%92%e5%a6%82%e4%bd%95%e4%bd%bf%e7%94%a8typescript%e5%ad%97%e4%b8%b2%e7%9a%84%e6%b1%82%e6%98%af%e5%90%a6%e7%82%ba%e7%a9%ba%e7%99%bd%e5%ad%97%e7%ac%a6%e4%b8%b2isblank\/","title":{"rendered":"\u5b78\u7fd2\u5982\u4f55\u4f7f\u7528TypeScript\u5b57\u4e32\u7684\u6c42\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32(isBlank)"},"content":{"rendered":"<p><meta name=\"keywords\" content=\"TypeScript,\u5b57\u4e32,\u6c42\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32,isBlank\"><\/p>\n<h1>TypeScript \u5b57\u4e32\u7684\u6c42\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32(isBlank)<\/h1>\n<p>TypeScript \u662f\u4e00\u7a2e JavaScript \u7684\u8d85\u96c6\uff0c\u5b83\u63d0\u4f9b\u4e86\u66f4\u591a\u7684\u529f\u80fd\uff0c\u53ef\u4ee5\u8b93\u958b\u767c\u8005\u66f4\u5bb9\u6613\u958b\u767c\u51fa\u66f4\u512a\u79c0\u7684\u7a0b\u5f0f\u78bc\u3002\u5176\u4e2d\u4e00\u500b\u529f\u80fd\u5c31\u662f\u53ef\u4ee5\u6aa2\u67e5\u5b57\u4e32\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32\uff0c\u9019\u500b\u529f\u80fd\u53ef\u4ee5\u4f7f\u7528 isBlank() \u65b9\u6cd5\u4f86\u5b8c\u6210\u3002<\/p>\n<p>isBlank() \u65b9\u6cd5\u53ef\u4ee5\u6aa2\u67e5\u4e00\u500b\u5b57\u4e32\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32\uff0c\u5982\u679c\u662f\u7a7a\u767d\u5b57\u7b26\u4e32\uff0c\u5247\u6703\u56de\u50b3 true\uff0c\u5426\u5247\u6703\u56de\u50b3 false\u3002<\/p>\n<p>\u70ba\u4e86\u4f7f\u7528 isBlank() \u65b9\u6cd5\uff0c\u6211\u5011\u9700\u8981\u5148\u5b89\u88dd TypeScript \u7684\u76f8\u95dc\u5957\u4ef6\uff0c\u5728\u5b89\u88dd\u5b8c\u6210\u5f8c\uff0c\u6211\u5011\u53ef\u4ee5\u5728\u7a0b\u5f0f\u78bc\u4e2d\u4f7f\u7528 isBlank() \u65b9\u6cd5\uff0c\u4f8b\u5982\uff1a<\/p>\n<pre class=\"brush: typescript\">\nlet str = \"Hello World\";\nlet isBlank = str.isBlank();\nconsole.log(isBlank); \/\/ false\n<\/pre>\n<p>\u5728\u4e0a\u9762\u7684\u7a0b\u5f0f\u78bc\u4e2d\uff0c\u6211\u5011\u5b9a\u7fa9\u4e86\u4e00\u500b\u5b57\u4e32 str\uff0c\u4e26\u4e14\u4f7f\u7528 isBlank() \u65b9\u6cd5\u6aa2\u67e5\u5b83\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32\uff0c\u6700\u5f8c\u6211\u5011\u5c07\u7d50\u679c\u8f38\u51fa\u5230\u63a7\u5236\u53f0\uff0c\u7d50\u679c\u70ba false\uff0c\u8868\u793a str \u4e0d\u662f\u7a7a\u767d\u5b57\u7b26\u4e32\u3002<\/p>\n<p>\u53e6\u5916\uff0c\u6211\u5011\u4e5f\u53ef\u4ee5\u4f7f\u7528 isBlank() \u65b9\u6cd5\u4f86\u6aa2\u67e5\u4e00\u500b\u5b57\u4e32\u662f\u5426\u70ba\u7a7a\u5b57\u7b26\u4e32\uff0c\u4f8b\u5982\uff1a<\/p>\n<pre class=\"brush: typescript\">\nlet str = \"\";\nlet isBlank = str.isBlank();\nconsole.log(isBlank); \/\/ true\n<\/pre>\n<p>\u5728\u4e0a\u9762\u7684\u7a0b\u5f0f\u78bc\u4e2d\uff0c\u6211\u5011\u5b9a\u7fa9\u4e86\u4e00\u500b\u7a7a\u5b57\u7b26\u4e32 str\uff0c\u4e26\u4e14\u4f7f\u7528 isBlank() \u65b9\u6cd5\u6aa2\u67e5\u5b83\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32\uff0c\u6700\u5f8c\u6211\u5011\u5c07\u7d50\u679c\u8f38\u51fa\u5230\u63a7\u5236\u53f0\uff0c\u7d50\u679c\u70ba true\uff0c\u8868\u793a str \u662f\u7a7a\u767d\u5b57\u7b26\u4e32\u3002<\/p>\n<p>\u7e3d\u7d50\u4f86\u8aaa\uff0cTypeScript \u63d0\u4f9b\u4e86 isBlank() \u65b9\u6cd5\uff0c\u53ef\u4ee5\u8b93\u958b\u767c\u8005\u66f4\u5bb9\u6613\u6aa2\u67e5\u5b57\u4e32\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32\uff0c\u9019\u500b\u529f\u80fd\u53ef\u4ee5\u8b93\u958b\u767c\u8005\u66f4\u5bb9\u6613\u958b\u767c\u51fa\u512a\u79c0\u7684\u7a0b\u5f0f\u78bc\u3002<\/p>\n<p><!--more--><\/p>\n<h2>TypeScript \u5b57\u4e32\u7684\u6c42\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32(isBlank)\u7684\u512a\u9ede<\/h2>\n<p>\u4f7f\u7528 TypeScript \u7684 isBlank() \u65b9\u6cd5\u53ef\u4ee5\u8b93\u958b\u767c\u8005\u66f4\u5bb9\u6613\u6aa2\u67e5\u5b57\u4e32\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32\uff0c\u4e26\u4e14\u53ef\u4ee5\u6e1b\u5c11\u958b\u767c\u6642\u9593\uff0c\u63d0\u9ad8\u958b\u767c\u6548\u7387\u3002<\/p>\n<p>\u53e6\u5916\uff0cTypeScript \u7684 isBlank() \u65b9\u6cd5\u4e5f\u53ef\u4ee5\u8b93\u958b\u767c\u8005\u66f4\u5bb9\u6613\u6aa2\u67e5\u5b57\u4e32\u662f\u5426\u70ba\u7a7a\u5b57\u7b26\u4e32\uff0c\u9019\u6a23\u53ef\u4ee5\u907f\u514d\u51fa\u73fe\u932f\u8aa4\uff0c\u63d0\u9ad8\u7a0b\u5f0f\u78bc\u7684\u54c1\u8cea\u3002<\/p>\n<h2>TypeScript \u5b57\u4e32\u7684\u6c42\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32(isBlank)\u7684\u7f3a\u9ede<\/h2>\n<p>TypeScript \u7684 isBlank() \u65b9\u6cd5\u53ea\u80fd\u6aa2\u67e5\u5b57\u4e32\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32\u6216\u7a7a\u5b57\u7b26\u4e32\uff0c\u4e0d\u80fd\u6aa2\u67e5\u5b57\u4e32\u662f\u5426\u70ba\u5176\u4ed6\u985e\u578b\u7684\u5b57\u7b26\u4e32\uff0c\u56e0\u6b64\u958b\u767c\u8005\u9084\u662f\u9700\u8981\u81ea\u884c\u6aa2\u67e5\u5b57\u4e32\u662f\u5426\u70ba\u5176\u4ed6\u985e\u578b\u7684\u5b57\u7b26\u4e32\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u6587\u7ae0\u6458\u8981\uff1a\u672c\u6587\u5c07\u4ecb\u7d39\u5982\u4f55\u4f7f\u7528TypeScript\u5b57\u4e32\u7684\u6c42\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32(isBlank)\uff0c\u8b93\u958b\u767c\u8005\u53ef\u4ee5\u66f4\u8f15\u9b06\u5730\u6aa2\u67e5\u5b57\u4e32\u662f\u5426\u70ba\u7a7a\u767d\u5b57\u7b26\u4e32\uff0c\u4e26\u63d0\u4f9b\u4e00\u4e9b\u6709\u7528\u7684\u6280\u5de7\u4f86\u63d0\u9ad8\u958b\u767c\u6548\u7387\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":[187],"tags":[186],"class_list":["post-5258","post","type-post","status-publish","format-standard","hentry","category-typescript","tag-typescript"],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_shortlink":"https:\/\/wp.me\/pcFK27-1mO","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/posts\/5258","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=5258"}],"version-history":[{"count":1,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/posts\/5258\/revisions"}],"predecessor-version":[{"id":5259,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/posts\/5258\/revisions\/5259"}],"wp:attachment":[{"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/media?parent=5258"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/categories?post=5258"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/tags?post=5258"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}