码迷,mamicode.com
首页 > 其他好文 > 详细

angular 中的 ? 和 !

时间:2018-10-24 20:28:32      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:检查   student   name   感叹号   undefined   pre   code   efi   fine   

? 用来检查 问号前面的变量为 null 或 undefined 时,程序不会出错。

  stu2: Student = {
    id: 1,
    name: undefined,
    age: 3
  };

<h1>stu2 name {{stu2!.name}}</h1>  // stu2 name 
<h1>stu2 id {{stu2!.id}}</h1>            // stu2 id 1
! 用来检查 感叹号后面的变量为 null 或 undefined 时, 程序不会出错。
stu3: Student;

<h1>stu3 id{{stu3?.id}}</h1>                // stu3 id
<h1>stu3 name{{stu3?.name}}</h1>      // stu3 name

angular 中的 ? 和 !

标签:检查   student   name   感叹号   undefined   pre   code   efi   fine   

原文地址:https://www.cnblogs.com/Godfunc/p/9844791.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!