Get/findById 在 Bootstrap 中返回 null

发布于 2024-10-19 09:30:05 字数 165 浏览 1 评论 0原文

当我尝试通过 User.get(1) 或 User.findById(1) 获取引导程序中的对象时,我总是返回 null 。我之前用 new User(...).save(flush: true) 保存了对象,并且用户已经在 User.list() 中...

谁知道原因/错误?

谢谢

when i try to get an object in the bootstrap via User.get(1) or User.findById(1) I get always null returned. I saved the object before with new User(...).save(flush: true) and the user is already in User.list()...

who knows the reason/mistake?

thx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情独悲 2024-10-26 09:30:05

由于验证错误,该域可能未保存。

替换你的

user.save(flush:true)

for

if (user.validate()) {
  user.save(flush:true)
} else {
  user.errors.allErrors.each { println it }
}

它将在你的控制台中打印所有验证错误。

The domain is probably not being saved due validation errors.

replace your

user.save(flush:true)

for

if (user.validate()) {
  user.save(flush:true)
} else {
  user.errors.allErrors.each { println it }
}

It will print all validation errors in your console.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文