嗨,我是 LWC 世界及其语法的新手。我想问一下,LWC 是否支持单个语句中的多个条件?
前任:
<template if:true={condition1 == 'value1' && condition2 == 'value2'}></template>
在单行语句中使用多个条件时出错。
或者应该采用以下方法
html - <template if:true={validateCondition}></template>
class js file - get validateCondition() { return (condition1 == 'value1' && condition2 == 'value2');}
或者必须使用嵌套条件
<template if:true={condition1 == 'value1'}>
<template if:true={condition2 == 'value2'}>
</template>
</template>
当前使用上述语句