我尝试了多种方法在vuejs中使用计算,监视和方法属性来对数据对象的一部分进行样式设置。我仍然不知道如何做才能使“健康!”中的“健康”一词成为可能。串成不同的风格。
<template>
<div='container'>
<div v-for="item in food">
{{ item }}
</div>
</div>
</template>
<script>
export default{
data(){
return{
food: [
{ name: 'fish', message: 'It is great!'},
{ name: 'carrot', message: 'It is healthy!'},
],
}
}
}
</script>
答案 0 :(得分:2)
这是一个工作示例,使用方法拆分每个消息并确定是否应突出显示该消息:
<template>
<div class="container">
<div v-for="(value, name) in food" :key="name">
<span v-for="(word, index) in words(value)" :key="index">
<span v-if="isHealthy(word)" class="healthy">{{ word }} </span>
<span v-else>{{ word }} </span>
</span>
</div>
</div>
</template>
<script>
export default {
data() {
return {
food: { fish: 'It is great!', carrot: 'It is healthy!' },
};
},
methods: {
words(string) {
return string.split(/\s+/);
},
isHealthy(string) {
return /healthy/i.test(string);
},
},
};
</script>
<style scoped>
.healthy {
color: red;
}
</style>
以上内容演示了完成此操作的简单方法-您可能会发现失败的特殊情况。您可以想象到words
的更复杂的版本,它提取带有和不带有“健康”一词的子字符串列表。这样会产生更浅的HTML结构。
答案 1 :(得分:1)
我创建了CodePen示例:
HTML:
<div id="app">
<div>
<div v-for="(value, name) in food" v-key="name">
{{ name }}: <span v-html="isHealthy(value)"></span>
</div>
</div>
</div>
CSS:
.healthy {
color: green;
font-weight: 700;
}
JS:
new Vue({
el: "#app",
data: () => ({
food: { fish: 'It is great!', carrot: 'It is healthy!' }
}),
methods: {
isHealthy(str) {
if(str.includes("healthy")) {
return str.replace("healthy", "<span class='healthy'>healthy</span>");
}
return str;
}
}
});
答案 2 :(得分:1)
基本上,您需要在“健康”一词上添加某种识别类。
这需要修改原始的elec_and_weather['DEMAND_t-%i'% k] = np.zeros(len(elec_and_weather['DEMAND']))'
数据。您可以使用food
生成新的computed
数据,用highlightedFood
替换“健康”数据。您可以在样式标签中随意设置样式。
<span class="highlight">healthy</span>
请注意,如果您使用范围内的CSS,则必须使用深度组合器:
<template>
<div id="app">
<div v-for="(item, index) in highlightedFood" :key="index">
<div v-html="item"></div>
</div>
</div>
</template>
<script>
export default {
name: "App",
data() {
return {
food: [
{ name: "fish", message: "It is great!" },
{ name: "carrot", message: "It is healthy!" }
]
};
},
computed: {
highlightedFood() {
return this.food.map(item => {
return {
name: item.name,
message: item.message.replace(
"healthy",
"<span class='highlight'>healthy</span>"
)
};
});
}
}
};
</script>
<style>
.highlight {
color: green;
}
</style>
有关深度选择器的更多信息:https://vue-loader.vuejs.org/guide/scoped-css.html#deep-selectors