{"id":5565,"date":"2023-01-06T09:39:44","date_gmt":"2023-01-06T01:39:44","guid":{"rendered":"https:\/\/badgameshow.com\/steven\/?p=5565"},"modified":"2023-01-06T09:39:44","modified_gmt":"2023-01-06T01:39:44","slug":"%e5%ad%b8%e7%bf%92%e5%a6%82%e4%bd%95%e5%88%a9%e7%94%a8react-js%e6%8b%bc%e6%8e%a5%e5%ad%97%e4%b8%b2","status":"publish","type":"post","link":"https:\/\/badgameshow.com\/steven\/react-js\/%e5%ad%b8%e7%bf%92%e5%a6%82%e4%bd%95%e5%88%a9%e7%94%a8react-js%e6%8b%bc%e6%8e%a5%e5%ad%97%e4%b8%b2\/","title":{"rendered":"\u5b78\u7fd2\u5982\u4f55\u5229\u7528React.JS\u62fc\u63a5\u5b57\u4e32"},"content":{"rendered":"<p><meta name=\"keywords\" content=\"React.JS, \u62fc\u63a5, concatenation\"><\/p>\n<h1>\u5982\u4f55\u4f7f\u7528 React.JS \u9032\u884c\u5b57\u4e32\u62fc\u63a5(concatenation)<\/h1>\n<p>React.JS \u662f\u4e00\u500b\u7531 Facebook \u6240\u958b\u767c\u7684 JavaScript \u51fd\u5f0f\u5eab\uff0c\u53ef\u4ee5\u8b93\u958b\u767c\u8005\u5efa\u7acb\u4e92\u52d5\u5f0f\u7684\u7db2\u9801\u61c9\u7528\u7a0b\u5f0f\u3002\u5b83\u53ef\u4ee5\u8b93\u958b\u767c\u8005\u66f4\u5bb9\u6613\u5730\u5efa\u7acb\u548c\u7dad\u8b77\u7db2\u9801\u61c9\u7528\u7a0b\u5f0f\uff0c\u4e26\u4e14\u53ef\u4ee5\u66f4\u6709\u6548\u7387\u5730\u64b0\u5beb\u7a0b\u5f0f\u78bc\u3002\u5728 React.JS \u4e2d\uff0c\u5b57\u4e32\u62fc\u63a5(concatenation)\u662f\u4e00\u500b\u975e\u5e38\u91cd\u8981\u7684\u6280\u8853\uff0c\u53ef\u4ee5\u8b93\u958b\u767c\u8005\u5c07\u591a\u500b\u5b57\u4e32\u7d50\u5408\u5728\u4e00\u8d77\uff0c\u4ee5\u5efa\u7acb\u66f4\u8907\u96dc\u7684\u5b57\u4e32\u3002<\/p>\n<p><!--more--><\/p>\n<p>\u5728 React.JS \u4e2d\uff0c\u5b57\u4e32\u62fc\u63a5(concatenation)\u53ef\u4ee5\u4f7f\u7528 <code>+<\/code> \u904b\u7b97\u5b50\u4f86\u5b8c\u6210\uff0c\u4f8b\u5982\uff1a<\/p>\n<pre class=\"brush: javascript\">\nlet str1 = \"Hello\";\nlet str2 = \"World\";\nlet str3 = str1 + \" \" + str2;\nconsole.log(str3); \/\/ Hello World\n<\/pre>\n<p>\u5728\u4e0a\u9762\u7684\u7a0b\u5f0f\u78bc\u4e2d\uff0c\u6211\u5011\u4f7f\u7528 <code>+<\/code> \u904b\u7b97\u5b50\u5c07 <code>str1<\/code> \u548c <code>str2<\/code> \u5b57\u4e32\u62fc\u63a5\u5728\u4e00\u8d77\uff0c\u4e26\u5c07\u7d50\u679c\u5b58\u5132\u5728 <code>str3<\/code> \u8b8a\u6578\u4e2d\u3002<\/p>\n<p>\u6b64\u5916\uff0cReact.JS \u4e5f\u63d0\u4f9b\u4e86\u4e00\u500b <code>String.prototype.concat()<\/code> \u65b9\u6cd5\uff0c\u53ef\u4ee5\u7528\u4f86\u5c07\u591a\u500b\u5b57\u4e32\u62fc\u63a5\u5728\u4e00\u8d77\uff0c\u4f8b\u5982\uff1a<\/p>\n<pre class=\"brush: javascript\">\nlet str1 = \"Hello\";\nlet str2 = \"World\";\nlet str3 = str1.concat(\" \", str2);\nconsole.log(str3); \/\/ Hello World\n<\/pre>\n<p>\u5728\u4e0a\u9762\u7684\u7a0b\u5f0f\u78bc\u4e2d\uff0c\u6211\u5011\u4f7f\u7528 <code>String.prototype.concat()<\/code> \u65b9\u6cd5\u5c07 <code>str1<\/code> \u548c <code>str2<\/code> \u5b57\u4e32\u62fc\u63a5\u5728\u4e00\u8d77\uff0c\u4e26\u5c07\u7d50\u679c\u5b58\u5132\u5728 <code>str3<\/code> \u8b8a\u6578\u4e2d\u3002<\/p>\n<p>\u53e6\u5916\uff0cReact.JS \u4e5f\u63d0\u4f9b\u4e86\u4e00\u500b <code>String.prototype.join()<\/code> \u65b9\u6cd5\uff0c\u53ef\u4ee5\u7528\u4f86\u5c07\u591a\u500b\u5b57\u4e32\u62fc\u63a5\u5728\u4e00\u8d77\uff0c\u4f8b\u5982\uff1a<\/p>\n<pre class=\"brush: javascript\">\nlet arr = [\"Hello\", \"World\"];\nlet str = arr.join(\" \");\nconsole.log(str); \/\/ Hello World\n<\/pre>\n<p>\u5728\u4e0a\u9762\u7684\u7a0b\u5f0f\u78bc\u4e2d\uff0c\u6211\u5011\u4f7f\u7528 <code>String.prototype.join()<\/code> \u65b9\u6cd5\u5c07 <code>arr<\/code> \u9663\u5217\u4e2d\u7684\u5143\u7d20\u62fc\u63a5\u5728\u4e00\u8d77\uff0c\u4e26\u5c07\u7d50\u679c\u5b58\u5132\u5728 <code>str<\/code> \u8b8a\u6578\u4e2d\u3002<\/p>\n<p>\u7e3d\u7d50\u4f86\u8aaa\uff0cReact.JS \u63d0\u4f9b\u4e86\u591a\u7a2e\u65b9\u6cd5\u53ef\u4ee5\u7528\u4f86\u5c07\u591a\u500b\u5b57\u4e32\u62fc\u63a5\u5728\u4e00\u8d77\uff0c\u4f8b\u5982 <code>+<\/code> \u904b\u7b97\u5b50\u3001<code>String.prototype.concat()<\/code> \u65b9\u6cd5\u548c <code>String.prototype.join()<\/code> \u65b9\u6cd5\u3002\u4f7f\u7528\u9019\u4e9b\u65b9\u6cd5\uff0c\u958b\u767c\u8005\u53ef\u4ee5\u66f4\u6709\u6548\u7387\u5730\u64b0\u5beb\u7a0b\u5f0f\u78bc\uff0c\u4e26\u5efa\u7acb\u66f4\u8907\u96dc\u7684\u5b57\u4e32\u3002<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u6587\u7ae0\u6458\u8981\uff1a\u5b78\u7fd2\u5982\u4f55\u5229\u7528React.JS\u62fc\u63a5\u5b57\u4e32\uff0c\u672c\u6587\u5c07\u4ecb\u7d39React.JS\u4e2d\u62fc\u63a5\u5b57\u4e32\u7684\u65b9\u6cd5\uff0c\u4e26\u63d0\u4f9b\u7c21\u55ae\u7684\u7bc4\u4f8b\u4f86\u8a73\u7d30\u8aaa\u660e\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-5565","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-1rL","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/posts\/5565","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=5565"}],"version-history":[{"count":1,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/posts\/5565\/revisions"}],"predecessor-version":[{"id":5566,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/posts\/5565\/revisions\/5566"}],"wp:attachment":[{"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/media?parent=5565"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/categories?post=5565"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/badgameshow.com\/steven\/wp-json\/wp\/v2\/tags?post=5565"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}