js中
data:{
// nothing
}
wxml中
<view wx:if="{{typeof(foo)!=='undefined'}}">helloview>
这里的hello不会展示,经测试wxml中的typeof(foo)输出是 undefined,但是表达式并不成立。
wxml中
foo!==undefined // true
typeof(foo)!=='undefined' // false
typeof(foo)!==undefined // false
js中是成立的,为什么wxml中不保持一致?
typeof(foo)!=='undefined' // true
推荐wxs, 方便好用。
wx:if="{{foo}}"就标识了 不为空不为null不为undefined不为负
wxml中不支持这种写法。
因为wxml不是js