如題,我想在后端跳轉(zhuǎn) ,有大佬解惑么?或者說webman 是用其他什么方式跳轉(zhuǎn)
參見手冊(cè) http://wtbis.cn/doc/webman/response.html 重定向部分
<?php
namespace app\controller;
use support\Request;
class Foo
{
public function hello(Request $request)
{
return redirect('/user');
}
}