赞
踩
错误原因: 你调用的对象是空的。
比如,User对象是string类型,而你进行了Length属性操作。
而假如string没有传过去,接收到的是null没有length这个属性,就会返回错误。
if(input.User.Length>0){
...
}
正确写法,先判断。其它类型的数据也要有相关判断。
if(input.User!=null && input.User.Length>0){
...
}
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。