博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Yii2 rules 添加时间比较功能
阅读量:6150 次
发布时间:2019-06-21

本文共 1147 字,大约阅读时间需要 3 分钟。

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 否则可能出问题)

 

// safari 浏览器 只能 new Date('yyyy/mm/dd')

function formatDate(value)
{
  value = value.split('-');
  if(value.length < 3) value.push('01');
  return value.join('/');
}

 

if (options.type === 'number') {         value = parseFloat(value);         compareValue = parseFloat(compareValue);}else if(options.type === 'strtotime'){  // 这里是新添加的         //value = new Date(value);         // compareValue = new Date(compareValue);

      value = new Date(formatDate(value));

      compareValue = new Date(formatDate(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文件后 一定要删除缓存哦!

转载于:https://www.cnblogs.com/cgjcgs/p/6050420.html

你可能感兴趣的文章
Codeforces Round #431 (Div. 1)
查看>>
如何进行数组去重
查看>>
将标题空格替换为 '_' , 并自动复制到剪切板上
查看>>
List Collections sort
查看>>
Mysql -- You can't specify target table 'address' for update in FROM clause
查看>>
使用局部标准差实现图像的局部对比度增强算法。
查看>>
2017-2018-1 20165313 《信息安全系统设计基础》第八周学习总结
查看>>
《代码敲不队》第四次作业:项目需求调研与分析
查看>>
菜鸡互啄队—— 团队合作
查看>>
HttpWebRequest的GetResponse或GetRequestStream偶尔超时 + 总结各种超时死掉的可能和相应的解决办法...
查看>>
SparseArray
查看>>
第二章
查看>>
android背景选择器selector用法汇总
查看>>
[转]Paul Adams:为社交设计
查看>>
showdialog弹出窗口刷新问题
查看>>
java
查看>>
Vue.js连接后台数据jsp页面  ̄▽ ̄
查看>>
关于程序的单元测试
查看>>
「一本通 1.1 例 1」活动安排
查看>>
input autocomplete用法
查看>>