0

父级在传递属性之前进行一些计算

<parent>
    <child src={compute(opts.src)}></child>
</parent>

它不起作用。

http://plnkr.co/edit/MguuodHHRlVytnikQKZ7?p=preview

如何做到这一点?

它是 Web 组件中非常基本的夹具。

4

1 回答 1

2

RiotJS 将srcopts 对象中的属性转换为由于在标签上riotSrc使用时不允许非法服务器请求而调用的属性。src=""

<child>
  <div>This is the original property: {opts.origin}</div>
  <div>This is the computed property: {opts.riotSrc}</div>
</child>
于 2016-01-14T03:18:52.407 回答