Unexpected UnexpectedNullableFound(post.IMAGE) 我在运行程序时遇到此错误,无法确定错误是什么,如果有人遇到相同的错误或知道错误的详细信息,请在此处提及
我的数据库是 MySql
我的模型课,
case class Post(id: Pk[Long]= NotAssigned, name:String, image:String)
功能
def listAllPostById():List[Post]={
DB.withConnection{ implicit connection =>
val listpost =SQL(
"""
select * from POST
""").on(
).as(Post.simple.*)
listpost
}
在应用程序中调用方法
def listAllpost()= Action{
val post:List[Post]=Post.listAllPostById
Ok(views.html.allPosts.render(post))
}
并在路线中
GET /allPosts controllers.Application.listAllpost
并查看页面
@for(post:Post<- posts){
@post.id
@post.name
@post.image}
简单的方法
val simple ={
get[Pk[Long]]("post.id") ~
get[String]("post.name")~
get[String]("post.image") map {
case id ~ name ~ image => Post(id,name,image)
}
错误
Execution exception
[RuntimeException: UnexpectedNullableFound(post.IMAGE)]
在线错误
).as(Post.simple.*)
advnce thnx .. by prasanth