- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<template>
<div>
<h2>{{weatherData.city}}</h2>
<h3>{{weatherData.weather}}</h3>
<rain-cloud v-if="iconSelect==='09d'"/>
<sun-cloud v-if="iconSelect==='04d'"/>
<sunshine v-if="iconSelect=='01d'"/>
<thunder-cloud v-if="iconSelect=='11d'"/>
<windy-cloud v-if="iconSelect=='50d'"/>
<snow-cloud v-if="iconSelect=='13d'"/>
<div class="container">
<h2>{{weatherData.temperature}}°C</h2>
<h4>max temperature: {{weatherData.tempMax}}°C</h4>
<h4>min temperature: {{weatherData.tempMin}}°C</h4>
<h4>humidity: {{weatherData.humidity}}%</h4>
</div>
</div>
</template>
computed:{
iconSelect(){
if(this.weatherData.icon==="04n" || "04d"){
this.weatherData.icon="04d"
}
else if(this.weatherData.icon==="01d"|| "01n"){
this.weatherData.icon="01d"
}
else if(this.weatherData.icon==="11d"|| "11n"){
this.weatherData.icon="11d"
}
else if(this.weatherData.icon==="50d"|| "50n"){
this.weatherData.icon="50d"
}
else if(this.weatherData.icon==="13d"|| "13n"){
this.weatherData.icon="13d"
}
else if(this.weatherData.icon==="09d"||"09n"||"10d"||"10n"){
this.weatherData.icon="09d"
}
return this.weatherData.icon
}
每个组件都是 SVG 动画。当陈述为真时,我只想渲染一个。但 v-if 不支持乘法条件。有任何想法吗?每种天气都有图标代码,例如“01d”和“01n”表示白天和夜间天气晴朗。但我只能使用一个 SVG
最佳答案
v-if
确实支持多个条件 - 例如,假设您有:
new Vue({
el: '#app',
data: {
x: 1,
y: 2
}
})
您可以编写如下语句:
<div v-if="x === 1 || y === 3">
...
</div>
Vue 还提供 v-else-if="condition"
和v-else
指令。
您的iconSelect()
内的条件也有问题。您已按以下格式编写了条件:if(this.weatherData.icon === "04n" || "04d")
此条件的计算结果始终为 true
,因为即使 weatherData.icon === "04n"
为 false(weatherData.icon
设置为其他值),第二个表达式 "04d"
被评估 - 其评估结果为 "04n"
,在条件上下文中,相当于 true
.
为了使这些条件按照您的预期工作,它们应该采用以下格式:
if(this.weatherData.icon === "04n" || this.weatherData.icon === "04d")
或者,在您的<template>
内,您需要更改您的 v-if
条件类似:
<sun-cloud v-if="iconSelect === '04d' || iconSelect === '04n'"></sun-cloud>
关于javascript - v-如果多个条件不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51806564/
今天有小伙伴给我留言问到,try{...}catch(){...}是什么意思?它用来干什么? 简单的说 他们是用来捕获异常的 下面我们通过一个例子来详细讲解下
我正在努力提高网站的可访问性,但我不知道如何在页脚中标记社交媒体链接列表。这些链接指向我在 facecook、twitter 等上的帐户。我不想用 role="navigation" 标记这些链接,因
说现在是 6 点,我有一个 Timer 并在 10 点安排了一个 TimerTask。之后,System DateTime 被其他服务(例如 ntp)调整为 9 点钟。我仍然希望我的 TimerTas
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我就废话不多说了,大家还是直接看代码吧~ ? 1
Maven系列1 1.什么是Maven? Maven是一个项目管理工具,它包含了一个对象模型。一组标准集合,一个依赖管理系统。和用来运行定义在生命周期阶段中插件目标和逻辑。 核心功能 Mav
我是一名优秀的程序员,十分优秀!