php比较类文件:yiisoft\yii2\validators\CompareValidator.php
JS比较类文件: yiisoft\yii2\assets\yii.validation.js
原来的比较 只包含integer 和 string 两种情况
通过添加类型 来增加时间的比较
前台用的是js时间选择插件 时间格式为 YYYY-hh-dd hh:ii:ss 之类的
PHP中用的是转换为时间戳比较时间 strtotime()
JS中 用的是 new Date() 比较时间(一定要 new 否则可能出问题)
if (options.type === ‘number‘) { value = parseFloat(value); compareValue = parseFloat(compareValue); }else if(options.type === ‘strtotime‘){ // 这里是新添加的 value = new Date(value); compareValue = new Date(compareValue); }
if ($type === ‘number‘) { $value = (float) $value; $compareValue = (float) $compareValue; }elseif($type === ‘strtotime‘){ // 这里是新添加的 $value = strtotime($value); $compareValue = strtotime($compareValue); } else { $value = (string) $value; $compareValue = (string) $compareValue; }
更新JS文件后 一定要删除缓存哦!
时间: 2024-10-25 20:25:58