values?.listArray这里的意思是什么?具体来说,我对问号很感兴趣.
[inputValue] = "values?.listArray"
Run Code Online (Sandbox Code Playgroud) 现在我做以下检查:
return this.profile.organization ? this.profile.organization.shifts : null;
Run Code Online (Sandbox Code Playgroud)
我可以美化这个对财产存在的检查吗?
所以,我的意思是:
this.profile.organization.shifts || '';
Run Code Online (Sandbox Code Playgroud)