發表日期:2018-12 文章編輯:小燈 瀏覽次數:3305
驗證規則支持對表單的令牌驗證,首先需要在你的表單里面增加下面隱藏域:
<input type="hidden" name="__token__" value="{$Request.token}" />
或者
{:token()}
然后在你的驗證規則中,添加token
驗證規則即可,例如,如果使用的是驗證器的話,可以改為:
protected $rule = ['name'=>'require|max:25|token','email' =>'email',];
如果你的令牌名稱不是__token__
,則表單需要改為:
<input type="hidden" name="__hash__" value="{$Request.token.__hash__}" />
或者:
{:token('__hash__')}
驗證器中需要改為:
protected $rule = ['name'=>'require|max:25|token:__hash__','email' =>'email',];
如果需要自定義令牌生成規則,可以調用Request
類的token
方法,例如:
namespace app\index\controller;use think\Controller;class Index extends Controller{public function index(){$token = $this->request->token('__token__', 'sha1');$this->assign('token', $token);return $this->fetch();}}
然后在模板表單中使用:
<input type="hidden" name="__token__" value="{$token}" />
或者不需要在控制器寫任何代碼,直接在模板中使用:
{:token('__token__', 'sha1')}
日期:2018-12 瀏覽次數:4806
日期:2018-12 瀏覽次數:5068
日期:2018-12 瀏覽次數:4156
日期:2018-12 瀏覽次數:3516
日期:2018-12 瀏覽次數:3897
日期:2018-12 瀏覽次數:3472
日期:2018-12 瀏覽次數:3518
日期:2018-12 瀏覽次數:6330
日期:2018-12 瀏覽次數:3298
日期:2018-12 瀏覽次數:3403
日期:2018-12 瀏覽次數:3512
日期:2018-12 瀏覽次數:4634
日期:2018-12 瀏覽次數:3038
日期:2018-12 瀏覽次數:3346
日期:2018-12 瀏覽次數:3153
日期:2018-12 瀏覽次數:3014
日期:2018-12 瀏覽次數:3407
日期:2018-12 瀏覽次數:3269
日期:2018-12 瀏覽次數:4356
日期:2018-12 瀏覽次數:3835
日期:2018-12 瀏覽次數:3341
日期:2018-12 瀏覽次數:4091
日期:2018-12 瀏覽次數:3126
日期:2018-12 瀏覽次數:3097
日期:2018-12 瀏覽次數:3080
日期:2018-12 瀏覽次數:3211
日期:2018-12 瀏覽次數:3510
日期:2018-12 瀏覽次數:3303
日期:2018-12 瀏覽次數:3244
日期:2018-12 瀏覽次數:3296
Copyright ? 2013-2018 Tadeng NetWork Technology Co., LTD. All Rights Reserved.