我已经查看了Tabris网站上的official documentation,但我还没有找到答案。那么,在一个Tabris应用程序中,如何确定当前运行的OS?
具体来说,我希望能够检测Android或iOS。
修改
我在@Holger发布答案之后在他们的网站上找到了这个例子,我在这里粘贴帮助他人:
var page = tabris.create("Page", {
title: "Device Info",
topLevel: true
});
["platform", "version", "model", "language"].forEach(function(property) {
tabris.create("TextView", {
layoutData: {left: 10, right: 10, top: [page.children().last(), 10]},
text: property + ": " + device[property]
}).appendTo(page);
});
page.open();
答案 0 :(得分:1)
有一个名为“ClientDevice”的客户端服务。您可以通过平台,操作系统版本等形成它。见http://developer.eclipsesource.com/tabris/docs/1.4/working/client-services/client-device#the_clients_platform