如果其他条件在angularjs中不起作用

时间:2019-07-10 11:21:09

标签: javascript angularjs

我是angularjs的新手,我正在获得就业身份,我只是想如果我获得的就业身份等于halftime,那么应该显示PartTime文本,这是我的代码,但没有用,什么都没显示,我错了?

<meta property="og:image" content="<?php echo $image;?>"/>

2 个答案:

答案 0 :(得分:4)

这是正确的语法:

$(".msg-span").continueReadingText({
    charsNum: 200,
    toggleText:"Show More"
}); 

<h2 ng-if="myprofile.myJobs[0].employmentType == 'HALFTIME'"> Part Time </h2> 内不需要大括号

答案 1 :(得分:2)

您不必使用插值{{ var }}

<h2 ng-if="myprofile.myJobs[0].employmentType == HALFTIME ">
    Part Time
</h2>