如何从Windows IoT中的另一个UWP应用启动javascript通用Windows应用?

时间:2018-08-01 11:02:25

标签: javascript windows uwp windows-10-universal windows-10-iot-core

我的要求是从另一个UWP应用程序启动UWP应用程序。我做到了,但是它可以在Windows 10桌面系统(而不是Windows IoT OS)上运行,请帮助我解决此问题。

$(document).on('click', '.openTAT', function () {
    var testAppUri = new Windows.Foundation.Uri("test-app2app:");
    var options = new Windows.System.LauncherOptions();
    options.TargetApplicationPackageFamilyName = "TATApp_ehke6zp0mbebr";
    Windows.System.Launcher.launchUriAsync(testAppUri, options).then(
        function (success) {
            if (success) {
                // URI launched
                x = "success";
                $("#errorLabel").html("success");
            } else {
                x = "failed";
                $("#errorLabel").html("failed");
                // URI launch failed
            }
        });
});

0 个答案:

没有答案