gpt4 book ai didi

riot.js - 如何在 RiotJS 中将变量传递到我的类、ID 或数据属性中?

转载 作者:行者123 更新时间:2023-12-01 23:42:54 25 4
gpt4 key购买 nike

我似乎无法弄清楚如何将变量传递到自定义元素的类、ID 或数据属性中。

<ub-item class="item cssV2 { opts.status }" id="{ opts.id }" data-link="{ opts.url }">

opts.status、opts.id 和 opts.url 如果我在像 <p> 这样的元素中传递它们,它们都可以工作,但是如何将变量传递到属性中呢? HTML 输出包括它们作为字符串。

最佳答案

将在标签中使用的变量应使用以下方法创建:

<mytag>
<p class="{ myclass: show }" id="{ myid }" data-link="{ mydata }">Example</p>

<script>
this.mydata = 'foo'
this.myid = 'bar'
this.show = true
</script>
</mytag>

这将呈现为:

 <mytag>
<p class="myclass" id="bar" data-link="foo">Example</p>
</mytag>

关于riot.js - 如何在 RiotJS 中将变量传递到我的类、ID 或数据属性中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30471222/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com