dongmu7335 2017-04-11 05:13
浏览 147
已采纳

当我尝试使用laravel中的datepicker更新日期字段时,在数据库中更新空白日期

When I try to update my form with date field having jquery datapicker it store empty value on my database so the date field not updated in my form ..I am using date datatype in database for date field..

I added this in html field

<input type="text" id="datepicker" value="{{ old('datetime', $site->datatime) }}" name="datatime">

This is inside my controller

$site->update([
            'name'=>$request['name'],
            'copyright'=> $request['copyright'],
            'is_active'=>$request['status'] == 'true' ? 1 : 0,
            'message'=>$request['message'],
            'datatime'=>$request['datetime'],
            'url'=>$request['url'],
            'metadata'=>$request['metadata']

        ]);
  • 写回答

2条回答 默认 最新

  • dq05304 2017-04-11 05:21
    关注

    This is most probably due to the wrong date format. Mysql accept YYYY-MM-DD for the date format. you can work around with the date e.x

    $site->update([
            'name'=>$request['name'],
            'copyright'=> $request['copyright'],
            'is_active'=>$request['status'] == 'true' ? 1 : 0,
            'message'=>$request['message'],
            'datatime'=> date('Y-m-d', strtotime($request['datetime'])),
            'url'=>$request['url'],
            'metadata'=>$request['metadata']
    
        ]);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 MAX9296A+MAX96717,美信gmsl解串有人做过吗?
  • ¥15 求帮我解决一下inode 爆满的问题(有偿)
  • ¥15 关于#vscode#的问题:布料滤波算法中C++实现pcl在Vscode中pcl库没有#include <pcl>
  • ¥15 fpga:ov5640采集tft显示
  • ¥100 python怎么连接wxSQLite3加密的数据库
  • ¥20 创建taro项目,在vscode上能够写跨平台写微信小程序代码
  • ¥15 网站出现错误跳转问题
  • ¥15 Docker容器里已经安装了ssh,但打包迁移到新机器一直容器一直提示unrecognized service。
  • ¥15 综合布线实例设计,就好看好看不恐怖可好滤镜好聚
  • ¥15 使用moviepy库视频合并时出错