gpt4 book ai didi

grails - 属性xxx类型不匹配

转载 作者:行者123 更新时间:2023-12-02 15:47:35 25 4
gpt4 key购买 nike

我正在尝试使用Grails构建简单的CRUD应用程序。我绝对是这个框架的新手。我的CRUD表具有很少的属性,已连接到本地数据库,并且除无法加载图片外,它的运行状况非常好。我收到一个错误,它的类型不匹配。怎么解决呢?

我的 Controller 类如下:

class Person 
{
int id
String name
String address
byte[] profilePic
}

static constraints
{
profilePic maxSize :204800
}

static mapping
{
table 'all_users'
version false
columns
{
id column: 'id'
name column: 'name'
address column: 'address'
profilePic column: 'profilepic'
}
}

最佳答案

域代码

class Person 
{
int id
String name
String address
String profilePic
}

static mapping
{
table 'all_users'
version false
columns
{
id column: 'id'
name column: 'name'
address column: 'address'
profilePic column: 'profilepic'
}
}

Controller 代码
def save(){
def person = new Person(params)
person.save flush: true, failOnError: true
redirect action: "show", id: person.id
def downloadedfile= request.getFile('profilePic')
String profilePic = "D:/Your Grails Applications/grails-app/assets/images/" + person.name + ".jpg"
downloadedfile.transferTo(new File(profilePic))
}

查看代码
<input type="file" name="profilePic"/>

关于grails - 属性xxx类型不匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44994760/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com