值绑定到标签属性tvml

时间:2018-07-26 11:55:39

标签: javascript xml tvos tvml

我想操纵我的xml文件,以便可以动态加载视频文件,

我有这个

<lockup videoURL="https://secure-streams.akamaized.net/rt-doc/index.m3u8">
   <img src="${this.BASEURL}resources/icons/liveradio.png" width="850" height="600" />
   <overlay>
     <title>Title 1</title>
     <subtitle>Subtitle 1</subtitle>
   </overlay>
</lockup>

我正在尝试使其工作,但是锁标签中的绑定不起作用

<prototypes>
   <lockup prototype="Latest" binding="@videoURL:{videoURL};">
      <img binding="@src:{url};" width="850" height="600"/>
      <overlay>
        <title binding="textContent:{title};" />
        <subtitle binding="textContent:{subtitle};" />
      </overlay>
   </lockup>
</prototypes>
<section binding="items:{news};" />

0 个答案:

没有答案