去除对象中的null值属性
Posted unreal-feather
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了去除对象中的null值属性相关的知识,希望对你有一定的参考价值。
function removeNull(option) { if (!option) { return; } for (var attr in option) { if (option[attr] === null && attr !== ‘teacherId‘) { delete option[attr]; continue; } if (typeof (option[attr]) == "object") { removeNull(option[attr]); } } }
以上是关于去除对象中的null值属性的主要内容,如果未能解决你的问题,请参考以下文章
Thymeleaf:对象中的对象,无法像jsp那样访问值?属性或字段 - 在 null 上找不到