Datetime 时间选择控件
Datetime 时间选择控件与 Date 一样 也可以支持 对 int 和 string 类型的Model属性字段进行注解,同样的 int 保存时间戳,string保存格式如 '2020-01-02 01:30:23' 的时间格式。
使用示例:
#[Datetime(
label: '选择时间1',
)]
public string $time1 = '';
#使用时间戳格式
#[Datetime(
label: '选择时间2',
)]
public ?int $time2 = null; //此处不要设置为 0 ,0也是会对应一个时间。
同时我们可以用 $defaultFunc 来设置我们的默认值为当前时间,
完整示例如下:
UserModel
namespace app\home\model;
use beacon\core\Form;
use beacon\widget\Datetime;
#注意 这里需要使用表单注解
#[Form(title: '用户表单', table: '@pf_user', template: 'user.form.tpl')]
class UserModel
{
#[Datetime(
label: '选择时间1',
defaultFunc: [self::class, 'getDatetime']
)]
public ?string $time1 = null;
#[Datetime(
label: '选择时间2',
defaultFunc: 'time'
)]
public ?int $time2 = null;
public static function getDatetime(): string
{
return date('Y-m-d H:i:s');
}
}
使用YeeUI 样式的模板
<!doctype html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<title>{$form->title}</title>
<link type="text/css" rel="stylesheet" href="/yeeui/css/yeeui.css"/>
<link type="text/css" rel="stylesheet" href="/icofont/icofont.css"/>
<script src="/yeeui/third/jquery-3.3.1.min.js"></script>
<script src="/yeeui/yee.js"></script>
</head>
<body>
<div style="margin: 20px">
<form method="post">
<div class="yee-panel">
<div class="panel-caption">
{if $form->getType()=='add'}添加{elseif $form->getType()=='edit'}编辑{/if}{$form->title}
</div>
<div class="panel-content">
{foreach from=$form->getViewFields() item=field}
{field_row field=$field}
{/foreach}
</div>
<div class="yee-submit">
<label class="submit-label"></label>
<div class="submit-cell">
{*输出隐藏域*}
{$form->fetchHideBox()|raw}
<input type="submit" class="form-btn red" value="提交">
</div>
</div>
</div>
</form>
</div>
</html>
控制器代码:
namespace app\home\controller;
use app\home\model\UserModel;
use beacon\core\Controller;
use beacon\core\Form;
use beacon\core\Logger;
use beacon\core\Method;
class User extends Controller
{
#[Method(act: 'index', method: Method::GET)]
public function index()
{
$form = Form::create(UserModel::class, 'add');
$this->displayForm($form);
}
#[Method(act: 'index', method: Method::POST)]
public function add()
{
$user = new UserModel();
$form = Form::create($user, 'add');
$input = $this->completeForm($form);
Logger::log($input); #input 可以用用于插入或者更新数据库。
Logger::log($user);
}
}
最终呈现效果:
提交后的 debug.php 打印结果:
{
"time1": "2021-05-12 05:57:06",
"time2": 1620770226
}
{
"___class_name": "app\\home\\model\\UserModel",
"time1": "2021-05-12 05:57:06",
"time2": "1620770226"
}