{"id":23138,"date":"2024-11-21T08:38:34","date_gmt":"2024-11-21T00:38:34","guid":{"rendered":"https:\/\/fwq.ai\/blog\/23138\/"},"modified":"2024-11-21T08:38:34","modified_gmt":"2024-11-21T00:38:34","slug":"%e6%80%8e%e4%b9%88%e5%9c%a8thinkphp%e6%a1%86%e6%9e%b6%e4%b8%ad%e8%bf%9b%e8%a1%8c%e6%8e%a7%e5%88%b6%e5%99%a8%e8%b7%b3%e8%bd%ac","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/23138\/","title":{"rendered":"\u600e\u4e48\u5728ThinkPHP\u6846\u67b6\u4e2d\u8fdb\u884c\u63a7\u5236\u5668\u8df3\u8f6c"},"content":{"rendered":"<\/p>\n<p><strong>\u4e00\u3001\u4f7f\u7528Contorller\u5bf9\u8c61\u7684redirect\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c<\/strong><\/p>\n<p>\u4f7f\u7528Controller\u5bf9\u8c61\u7684redirect\u65b9\u6cd5\u53ef\u4ee5\u5728ThinkPHP\u4e2d\u5b9e\u73b0\u9875\u9762\u8df3\u8f6c\u3002\u8fd9\u79cd\u65b9\u6cd5\u5141\u8bb8\u4f7f\u7528\u4e24\u4e2a\u53c2\u6570\uff1a\u7b2c\u4e00\u4e2a\u53c2\u6570\u7528\u4e8e\u786e\u5b9a\u8df3\u8f6c\u7684URL\u5730\u5740\uff0c\u7b2c\u4e8c\u4e2a\u53c2\u6570\u5219\u6307\u5b9a\u5728\u8df3\u8f6c\u65f6\u9700\u8981\u4f20\u9012\u7684\u53c2\u6570\u4fe1\u606f\u3002<\/p>\n<p>\u5177\u4f53\u7684\u5b9e\u73b0\u6b65\u9aa4\u5982\u4e0b\uff1a<\/p>\n<ol>\n<li>\n<p>\u5728\u63a7\u5236\u5668\u65b9\u6cd5\u4e2d\u8c03\u7528redirect\u65b9\u6cd5\uff0c\u4f8b\u5982\uff1a<\/p>\n<p><span>\u7acb\u5373\u5b66\u4e60<\/span>\u201c\u201d\uff1b<\/p>\n<\/li>\n<\/ol>\n<pre>public&nbsp;function&nbsp;index()\n{\n&nbsp;&nbsp;&nbsp;&nbsp;\/\/&nbsp;\u8df3\u8f6c\u5230hello\u65b9\u6cd5\n&nbsp;&nbsp;&nbsp;&nbsp;$this-&amp;gt;redirect('hello');\n}<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<ol>\n<li>\n<p>\u5728\u914d\u7f6e\u6587\u4ef6\u4e2d\u5b9a\u4e49\u8def\u7531\u89c4\u5219\uff0c\u4f8b\u5982\uff1a<\/p>\n<\/li>\n<\/ol>\n<pre>\/\/&nbsp;\u8def\u7531\u5b9a\u4e49\nreturn&nbsp;[\n&nbsp;&nbsp;&nbsp;&nbsp;\/\/&nbsp;\u8df3\u8f6c\n&nbsp;&nbsp;&nbsp;&nbsp;'hello'&nbsp;=&amp;gt;&nbsp;'index\/hello',\n];<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u8fd9\u91cc\u5c06hello\u6620\u5c04\u5230Index\u63a7\u5236\u5668\u7684hello\u65b9\u6cd5\u3002<\/p>\n<ol>\n<li>\n<p>\u5728\u63a7\u5236\u5668\u7684hello\u65b9\u6cd5\u4e2d\u5b9e\u73b0\u8df3\u8f6c\uff0c\u4f8b\u5982\uff1a<\/p>\n<\/li>\n<\/ol>\n<pre>public&nbsp;function&nbsp;hello()\n{\n&nbsp;&nbsp;&nbsp;&nbsp;\/\/&nbsp;\u8df3\u8f6c\u5230\/home\/index\/index\u65b9\u6cd5\n&nbsp;&nbsp;&nbsp;&nbsp;$this-&amp;gt;redirect('\/home\/index\/index',['id'=&amp;gt;1]);\n}<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u8fd9\u91cc\u5c06\u8df3\u8f6c\u5230Home\u63a7\u5236\u5668\u7684index\u65b9\u6cd5\uff0c\u5e76\u4f20\u9012id\u53c2\u6570\u4e3a1\u3002<\/p>\n<p><strong>\u4e8c\u3001\u4f7f\u7528url\u51fd\u6570\u548c\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c<\/strong><\/p>\n<p>\u9664\u4e86\u4f7f\u7528Contorller\u5bf9\u8c61\u7684redirect\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c\u5916\uff0c\u8fd8\u53ef\u4ee5\u4f7f\u7528url\u51fd\u6570\u548c\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c\u3002<\/p>\n<p>\u4f7f\u7528url\u51fd\u6570\u5b9e\u73b0\u8df3\u8f6c\uff1a<\/p>\n<pre>url('\u6a21\u5757\/\u63a7\u5236\u5668\/\u64cd\u4f5c',['\u53c2\u6570']);<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u4f7f\u7528\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c\uff1a<\/p>\n<pre>$this-&amp;gt;success('\u63d0\u793a\u4fe1\u606f',&nbsp;'\u8df3\u8f6curl');<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u5176\u4e2dsuccess\u65b9\u6cd5\u53ef\u4ee5\u63a5\u53d7\u4e09\u4e2a\u53c2\u6570\uff0c\u5206\u522b\u662f\u63d0\u793a\u4fe1\u606f\u3001\u8df3\u8f6cURL\u548c\u7b49\u5f85\u65f6\u95f4\uff0c\u9ed8\u8ba4\u7b49\u5f85\u65f6\u95f4\u4e3a1\u79d2\u3002<\/p>\n<p>\u4e0b\u9762\u5206\u522b\u4ecb\u7ecd\u4f7f\u7528url\u51fd\u6570\u548c\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c\u7684\u5177\u4f53\u5b9e\u73b0\u6b65\u9aa4\uff1a<\/p>\n<ol>\n<li>\n<p>\u4f7f\u7528url\u51fd\u6570\u5b9e\u73b0\u8df3\u8f6c\uff0c\u4f8b\u5982\uff1a<\/p>\n<\/li>\n<\/ol>\n<pre>public&nbsp;function&nbsp;index()\n{\n&nbsp;&nbsp;&nbsp;&nbsp;\/\/&nbsp;\u8df3\u8f6c\u5230Home\u63a7\u5236\u5668\u7684index\u65b9\u6cd5\n&nbsp;&nbsp;&nbsp;&nbsp;$url&nbsp;=&nbsp;url('home\/index\/index',['id'=&amp;gt;1]);\n&nbsp;&nbsp;&nbsp;&nbsp;$this-&amp;gt;assign('url',&nbsp;$url);\n&nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;$this-&amp;gt;fetch();\n}<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u8fd9\u91cc\u5c06\u8df3\u8f6c\u5230Home\u63a7\u5236\u5668\u7684index\u65b9\u6cd5\uff0c\u5e76\u4f20\u9012id\u53c2\u6570\u4e3a1\u3002<\/p>\n<p>\u5728\u9875\u9762\u4e2d\u4f7f\u7528a\u6807\u7b7e\u5b9e\u73b0\u8df3\u8f6c\uff1a<\/p>\n<pre>&lt;a&gt;\u8df3\u8f6c&lt;\/a&gt;<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<ol>\n<li>\n<p>\u4f7f\u7528\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c\uff0c\u4f8b\u5982\uff1a<\/p>\n<\/li>\n<\/ol>\n<pre>public&nbsp;function&nbsp;index()\n{\n&nbsp;&nbsp;&nbsp;&nbsp;\/\/&nbsp;\u8df3\u8f6c\u5230Home\u63a7\u5236\u5668\u7684index\u65b9\u6cd5\n&nbsp;&nbsp;&nbsp;&nbsp;$url&nbsp;=&nbsp;url('home\/index\/index',['id'=&amp;gt;1]);\n&nbsp;&nbsp;&nbsp;&nbsp;$this-&amp;gt;success('\u8df3\u8f6c\u6210\u529f',&nbsp;$url);\n}<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u8df3\u8f6c\u5230Home\u63a7\u5236\u5668\u7684index\u65b9\u6cd5\uff0c\u540c\u65f6\u4f20\u9012id\u53c2\u6570\u503c\u4e3a1\u3002\u4e00\u79d2\u949f\u540e\uff0c\u9875\u9762\u5c06\u81ea\u52a8\u8df3\u8f6c\u5230\u9884\u5b9a\u7684URL\uff0c\u5e76\u663e\u793a\u201c\u8df3\u8f6c\u6210\u529f\u201d\u7684\u63d0\u793a\u3002<\/p>\n<p>\u4ee5\u4e0a\u5c31\u662f\u600e\u4e48\u5728ThinkPHP\u6846\u67b6\u4e2d\u8fdb\u884c\u63a7\u5236\u5668\u8df3\u8f6c\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u4e00\u3001\u4f7f\u7528Contorller\u5bf9\u8c61\u7684redirect\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c \u4f7f\u7528Controller\u5bf9\u8c61\u7684redirect\u65b9\u6cd5\u53ef\u4ee5\u5728ThinkPHP\u4e2d\u5b9e\u73b0\u9875\u9762\u8df3\u8f6c\u3002\u8fd9\u79cd\u65b9\u6cd5\u5141\u8bb8\u4f7f\u7528\u4e24\u4e2a\u53c2\u6570\uff1a\u7b2c\u4e00\u4e2a\u53c2\u6570\u7528\u4e8e\u786e\u5b9a\u8df3\u8f6c\u7684URL\u5730\u5740\uff0c\u7b2c\u4e8c\u4e2a\u53c2\u6570\u5219\u6307\u5b9a\u5728\u8df3\u8f6c\u65f6\u9700\u8981\u4f20\u9012\u7684\u53c2\u6570\u4fe1\u606f\u3002 \u5177\u4f53\u7684\u5b9e\u73b0\u6b65\u9aa4\u5982\u4e0b\uff1a \u5728\u63a7\u5236\u5668\u65b9\u6cd5\u4e2d\u8c03\u7528redirect\u65b9\u6cd5\uff0c\u4f8b\u5982\uff1a \u7acb\u5373\u5b66\u4e60\u201c\u201d\uff1b public&nbsp;function&nbsp;index() { &nbsp;&nbsp;&nbsp;&nbsp;\/\/&nbsp;\u8df3\u8f6c\u5230hello\u65b9\u6cd5 &nbsp;&nbsp;&nbsp;&nbsp;$this-&amp;gt;redirect(&#8216;hello&#8217;); } \u767b\u5f55\u540e\u590d\u5236 \u5728\u914d\u7f6e\u6587\u4ef6\u4e2d\u5b9a\u4e49\u8def\u7531\u89c4\u5219\uff0c\u4f8b\u5982\uff1a \/\/&nbsp;\u8def\u7531\u5b9a\u4e49 return&nbsp;[ &nbsp;&nbsp;&nbsp;&nbsp;\/\/&nbsp;\u8df3\u8f6c &nbsp;&nbsp;&nbsp;&nbsp;&#8216;hello&#8217;&nbsp;=&amp;gt;&nbsp;&#8216;index\/hello&#8217;, ]; \u767b\u5f55\u540e\u590d\u5236 \u8fd9\u91cc\u5c06hello\u6620\u5c04\u5230Index\u63a7\u5236\u5668\u7684hello\u65b9\u6cd5\u3002 \u5728\u63a7\u5236\u5668\u7684hello\u65b9\u6cd5\u4e2d\u5b9e\u73b0\u8df3\u8f6c\uff0c\u4f8b\u5982\uff1a public&nbsp;function&nbsp;hello() { &nbsp;&nbsp;&nbsp;&nbsp;\/\/&nbsp;\u8df3\u8f6c\u5230\/home\/index\/index\u65b9\u6cd5 &nbsp;&nbsp;&nbsp;&nbsp;$this-&amp;gt;redirect(&#8216;\/home\/index\/index&#8217;,[&#8216;id&#8217;=&amp;gt;1]); } \u767b\u5f55\u540e\u590d\u5236 \u8fd9\u91cc\u5c06\u8df3\u8f6c\u5230Home\u63a7\u5236\u5668\u7684index\u65b9\u6cd5\uff0c\u5e76\u4f20\u9012id\u53c2\u6570\u4e3a1\u3002 \u4e8c\u3001\u4f7f\u7528url\u51fd\u6570\u548c\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c \u9664\u4e86\u4f7f\u7528Contorller\u5bf9\u8c61\u7684redirect\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c\u5916\uff0c\u8fd8\u53ef\u4ee5\u4f7f\u7528url\u51fd\u6570\u548c\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c\u3002 \u4f7f\u7528url\u51fd\u6570\u5b9e\u73b0\u8df3\u8f6c\uff1a url(&#8216;\u6a21\u5757\/\u63a7\u5236\u5668\/\u64cd\u4f5c&#8217;,[&#8216;\u53c2\u6570&#8217;]); \u767b\u5f55\u540e\u590d\u5236 \u4f7f\u7528\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c\uff1a $this-&amp;gt;success(&#8216;\u63d0\u793a\u4fe1\u606f&#8217;,&nbsp;&#8216;\u8df3\u8f6curl&#8217;); \u767b\u5f55\u540e\u590d\u5236 \u5176\u4e2dsuccess\u65b9\u6cd5\u53ef\u4ee5\u63a5\u53d7\u4e09\u4e2a\u53c2\u6570\uff0c\u5206\u522b\u662f\u63d0\u793a\u4fe1\u606f\u3001\u8df3\u8f6cURL\u548c\u7b49\u5f85\u65f6\u95f4\uff0c\u9ed8\u8ba4\u7b49\u5f85\u65f6\u95f4\u4e3a1\u79d2\u3002 \u4e0b\u9762\u5206\u522b\u4ecb\u7ecd\u4f7f\u7528url\u51fd\u6570\u548c\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c\u7684\u5177\u4f53\u5b9e\u73b0\u6b65\u9aa4\uff1a \u4f7f\u7528url\u51fd\u6570\u5b9e\u73b0\u8df3\u8f6c\uff0c\u4f8b\u5982\uff1a public&nbsp;function&nbsp;index() { &nbsp;&nbsp;&nbsp;&nbsp;\/\/&nbsp;\u8df3\u8f6c\u5230Home\u63a7\u5236\u5668\u7684index\u65b9\u6cd5 &nbsp;&nbsp;&nbsp;&nbsp;$url&nbsp;=&nbsp;url(&#8216;home\/index\/index&#8217;,[&#8216;id&#8217;=&amp;gt;1]); &nbsp;&nbsp;&nbsp;&nbsp;$this-&amp;gt;assign(&#8216;url&#8217;,&nbsp;$url); &nbsp;&nbsp;&nbsp;&nbsp;return&nbsp;$this-&amp;gt;fetch(); } \u767b\u5f55\u540e\u590d\u5236 \u8fd9\u91cc\u5c06\u8df3\u8f6c\u5230Home\u63a7\u5236\u5668\u7684index\u65b9\u6cd5\uff0c\u5e76\u4f20\u9012id\u53c2\u6570\u4e3a1\u3002 \u5728\u9875\u9762\u4e2d\u4f7f\u7528a\u6807\u7b7e\u5b9e\u73b0\u8df3\u8f6c\uff1a &lt;a&gt;\u8df3\u8f6c&lt;\/a&gt; \u767b\u5f55\u540e\u590d\u5236 \u4f7f\u7528\u9875\u9762\u8df3\u8f6c\u65b9\u6cd5\u5b9e\u73b0\u8df3\u8f6c\uff0c\u4f8b\u5982\uff1a public&nbsp;function&nbsp;index() { &nbsp;&nbsp;&nbsp;&nbsp;\/\/&nbsp;\u8df3\u8f6c\u5230Home\u63a7\u5236\u5668\u7684index\u65b9\u6cd5 &nbsp;&nbsp;&nbsp;&nbsp;$url&nbsp;=&nbsp;url(&#8216;home\/index\/index&#8217;,[&#8216;id&#8217;=&amp;gt;1]); [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-23138","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/23138","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=23138"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/23138\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=23138"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=23138"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=23138"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}