助手函數token() [F:\phpStudy\WWW\csweb\thinkphp\helper.php]php
request類token()方法 [F:\phpStudy\WWW\csweb\thinkphp\library\think\Request.php]web
token生成函數能夠自定義:ajax
定義全局函數:thinkphp
1 function token_fun($p){ 2 return "token_".$p; 3 }
調用:app
1 <?php 2 namespace app\index\controller; 3 class Test extends BasicAdmin 4 { 5 public function index() 6 { 7 var_dump(request()->token('__token__', 'token_fun')); 8 //return $this->_view_fetch("/test/index"); 9 } 10 }
顯示:函數
ajax請求時調用token()會將token附加到response header中:fetch