当前位置: 首页 > 工具软件 > Response JS > 使用案例 >

js中response的短路与的使用

田瀚
2023-12-01
在request得到response之后,通常这样书写:
其实是使用了短路与&&,如果response为undifined/null,就不再进行后续赋值,简化了较长的判断写法,又避免了报错。
ajaxService.get(***).then(function (response) {
        response && (*** = response.data);
      });

转载于:https://www.cnblogs.com/chang-kai/p/11169625.html

 类似资料: