thinkPHP格式化时间的问题

WBOY
Release: 2016-06-23 13:43:28
Original
1442 people have browsed it

      后台采用thinkPHP框架,前台采用jqueryEasyui技术。
      关于action中,取出的数据,时间字段如何格式化为"2014-01-01 12:00:00"格式的问题。、
      废话不多说,贴图:
  【 前台页面】:
    
   后台有两张表:customer表和account表。运用了关联模型。前台页面,客户姓名,想显示customer表中的name字段,那么js中,表格列字段怎么写?
   【页面js】:
   
  客户姓名,怎么显示customer表的name字段啊?
  为什么不能“ {field:'customer.name',title:'客户姓名',width:100,resizable:true,sortable:true,align:'right'}”啊?
  field具体怎么用,不能是关联表的数据吗?
   【后台action】:
   
  
还有,前台页面显示时间,如何呈现“2014-01-01 12:00:00”格式。后台数据库保存的是UNIX时间戳。
我想在action中先转换时间格式,再在页面中显示出来。怎么写?
    


回复讨论(解决方案)

date("Y-m-d H:i:s",时间戳)  , h小写表示12小时制

jquery easyui查询外键对象的字段问题解决了!
成功取出外键对象customer的name字段。
前台页面效果:

js代码如下:

后台action采用关联查询,关键是$model->relation("customer").where($map)->select();
如图:

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!