1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\common\validate;
- use think\Validate;
- /**
-
- *
-
- *
- * ----------------------------------------------------------------------------
- *
-
- * 验证器
- */
- class Sellersns extends Validate
- {
- protected $rule = [
- 'content' => 'require|length:1,140',
- 'goods_url' => 'url'
- ];
- protected $message = [
- 'content.require' => '内容不能为空且不能超过140个字',
- 'content.length' => '内容不能为空且不能超过140个字',
- 'goods_url.url' => 'url格式不正确,请输入这正确的格式!'
- ];
- protected $scene = [
- 'store_sns_save' => ['content', 'goods_url'],
- ];
- }
|