我试图弄清楚如何使用 TVJS 从 TVML 中的 textField 获取值,但我还没有找到任何文档,我不想等待文档更新。实际上没有任何模式可以绑定到输入,因为我确信这是一个除了登录服务之外很少使用的用例。我想我可以解析 Xml 但这似乎超级 hacky。
问问题
1411 次
2 回答
5
我最终自己弄清楚了。我必须使用来自选择事件对象的回调,然后将文本元素传递给一个函数来处理事件。
function template() {
var template = "<document><formTemplate><textField id="email">Your email</textField><footer><button><text>Submit</text></button></footer></formTemplate></document>";
var parser = new DOMParser();
var doc = parser.parseFromString(template , "application/xml");
var email = doc.getElementById("email");
doc.addEventListener("select", function() { submit(email); });
}
function submit(textField) {
var keyboard textField.getFeature('Keyboard');
var email = keyboard.text;
}
拥有节点后,我使用 Apple TVJS 函数 getFeature('Keyboard') 从该对象获取文本值。
于 2015-09-20T23:47:01.623 回答
0
由于某种原因,此解决方案对我不起作用,但我找到了另一个解决方案:
var sender = event.target;
var formTemplate = sender.parentNode.parentNode;
var children = formTemplate.childNodes;
var textField = children.item(1); // replace "1" with the index of "textField" element in your template
var inputValue = textField.getFeature("Keyboard").text;
于 2019-05-19T06:32:36.220 回答