比较html中的布尔值无法按预期工作

时间:2019-05-11 10:03:45

标签: html angular7 ionic4

我有一个名为setBankOffer的标志,它使用以下语句从查询字符串参数中读取值。

isReadOnly

我正确地获取了值,但问题是在html中比较此标志或否定它不能按预期工作。

例如,看下面的代码: this.isReadOnly = this.activatedRoute.snapshot.params['isReadOnly'];

但是

isReadOnly:{{isReadOnly}} -->if true <br> isReadOnly==false:{{isReadOnly==false}} --> returns false which is correct

这在IONIC 4页面中发生

有什么帮助吗?

提前谢谢。

1 个答案:

答案 0 :(得分:1)

也许您可以像这样使用它

<html>
    <head>
        <title>Aaron's Test With Objects</title>
    </head>
    <body>

        <ul id="aaron-family">
        </ul>
        <script src="objects.js" type="text/javascript"></script>

    </body>
</html>

这意味着isReadOnly为true时返回true,否则返回false。