我有这个 if 语句:
if(localStorage.getItem('user') != null){
alert('get values called from start. User stored: '+localStorage.getItem('user'));
getValues();
}
假设只有在有用户登录时才运行 getValues。但是,即使存储的用户为空,它也会运行。如下图所示,user 值为 null 那么它为什么会运行呢?