Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 gsp 中有一个简单的选择标签,用于从另一个表填充的下拉列表。最近我在下拉页面上遇到空指针异常,我发现这是因为在填充下拉列表的表中输入了一个空值,即另一个表中optionKey="name"的name列有一个空值。
optionKey="name"
name
如何避免我的整个页面由于这个单一的空条目而崩溃?
尝试这个:
optionKey="${{it.name ?: "whateveryouwanthere"}}"