Get/findById 在 Bootstrap 中返回 null
当我尝试通过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于验证错误,该域可能未保存。
替换你的
for
它将在你的控制台中打印所有验证错误。
The domain is probably not being saved due validation errors.
replace your
for
It will print all validation errors in your console.