惯用js

常用jsfunction isEmpty(objectEntity){if(objectEntitynull || typeof(objectEntity) undefined){

常用js

function isEmpty(objectEntity){if(objectEntity==null || typeof(objectEntity) == 'undefined'){return false}return true;}function stringIsNull(str){if(str!=null && str != ''){return true;}return false;}