play 框架中如何在anorm 解析数据库结果时进行datetime格式转换?
我从MySQL取得的数据里有一项是time,取回来的是“yyyy-MM-dd HH:mm:ss”格式的java.sql.timestamp类型的数据,我有下面的代码把time转换成为joda.DateTime类型的数据,然后转为字符串传给前端,但是发现转换成了一串数字的timestamp形式,但是前端需要展示“yyyy-MM-dd HH:mm:ss”格式的时间。请问在服务器后台怎么进行这个格式化?
下面是我的代码。
import org.joda.time.DateTime
import anorm.SqlParser._
import anorm._
import play.api.db.DB
import play.api.libs.functional.syntax._
import play.api.libs.json._
import play.api.Play.current
/**
* Created by zsh on 2015/5/11.
*/
case class JDItem(
id: Long,//商品ID
name: String,//商品名称
url: String,//商品url
// imgsrc: String,//商品图片(url)
price: Double,//商品价格
commentnum: Int,//商品评论数
likerate:Int,//好评率
time:DateTime,//上架时间
// wareInfo: String,//产品特色介绍(图文)
// wareStandard: String,//产品规格
// warePack:String,//产品包装
// wareService:String,//产品售后
category:String)
object JDItem {
val jditem = {
get[Long]("id") ~
get[String]("name") ~
get[String]("url") ~
get[Double]("price") ~
get[Int]("commentnum") ~
get[Int]("likerate") ~
get[DateTime]("time") ~
get[String]("category") map {
case id ~ name ~ url ~price~
commentnum~likerate~time~category => JDItem(id,name,url,price,
commentnum,likerate,time,category)
}
}
implicit val JDItemWrites: Writes[JDItem] = (
(JsPath \ "id").write[Long] and
(JsPath \ "name").write[String] and
(JsPath \ "url").write[String] and
(JsPath \ "price").write[Double] and
(JsPath \ "commentnum").write[Int] and
(JsPath \ "likerate").write[Int] and
(JsPath \ "time").write[DateTime] and
(JsPath \ "category").write[String]
)(unlift(JDItem.unapply))
def getJson(category:String,sort:String,DescOrAsc:String):JsObject = DB.withConnection{ implicit c =>
val list = SQL("select id,name,url,price,commentnum,likerate,time,category from "+category+" order by "+sort+" "+DescOrAsc+" limit 100").as(jditem *)
val json:JsValue = Json.toJson(list)
val jsobject = Json.obj("total"-> list.length,"rows"-> json)
println("发送的字符串是========"+jsobject.toString())
jsobject
}
def all(): List[String] = DB.withConnection { implicit c =>
SQL("show tables").as(get[String]("table_name") *)
}
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论