我从两个域类保存表单值时遇到问题

一类是

 class Ip {

String inetAddress
String dns
String os



String toString(){
    "${inetAddress}"
}

Hoster hoster

static constraints = {
     ....

第二个是
  class Hoster {

    static HOSTER_OPTIONS = ["Name1", "Name2", "Name3"]
String name;

String toString(){
    "${name}"
}

List ips = new ArrayList()
static hasMany = [ips : Ip]

    static constraints = {
    name(unique: true, blank: false, inList: HOSTER_OPTIONS)
}

我有一个Controller,负责处理表单中的数据
def systems = new Ip()
systems.inetAddress = params.ip
systems.dns = params.dns
systems.os = params.os

systems.hoster.name = params.hoster
def result = systems.save(flush: true, failOnError: true)

但是我并没有设法管理数据的保存。

最佳答案

您没有在 Controller 中正确关联域类:

systems.hoster.name = params.hoster

除了设置名称,您需要设置数据库中存在的实例:
systems.hoster = Hoster.findByName(params.hoster)

09-25 20:23