关于ajax判断后端返回的数据是否为null的简介

1、后端返回:

return null;

2、ajax需要判断:

if(null != jsonStr && "" != jsonStr){

具体代码:

$.ajax(
    {
     type: "POST",
     data: {
      name: name,
      code: code
     },
     dataType: "json",
     url: "info",
     success: function(jsonStr) {
      if(null != jsonStr && "" != jsonStr){
      
       $("#curator_info").html("ok");
      } else {
       $("#curator_info").html("no");
      }
     }
    }
   );
© 版权声明
THE END
喜欢就支持一下吧
点赞8 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容