我刚开始使用Apple TV标记语言,我的客户端需要一步登录,但如果我尝试在一个表单中添加两个字段,则只显示第一个字段,我的代码是:
<document
data-view="LoginScreen">
<formTemplate>
<banner>
<img src="${CONFIG.configURL}/${CONFIG.splashScreen}"
width="1920" height="1080" />
<description>Enter email</description>
</banner>
<textField name="username">username@test.ro</textField>
<banner>
<img src="${CONFIG.configURL}/${CONFIG.splashScreen}"
width="1920" height="1080" />
<description>Enter password</description>
</banner>
<textField text="******" secure="true" name="password"></textField>
<footer>
<button id="login">
<text>Login</text>
</button>
</footer>
</formTemplate>
</document>
有什么建议吗?
谢谢,抱歉我的英文不好!