I am not sure what kind of validation I should use for comments in E-commerce website that I am currently developing. It is not much I want to validate but I'm worried about security.
So what is the best practice?
My code now looks like this:
$this->validate($request, [
'comment' => 'max:1000',
]);
Run Code Online (Sandbox Code Playgroud)
Is it safe to leave it like that?
这取决于您的需求,但我可以建议一些
$this->validate($request, [
'comment' => 'required|min:3|max:1000',
]);
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
10034 次 |
最近记录: |