在 JavaScript 中使用时 LaunchUriAsync 抛出异常
LaunchUriAsync throwing exception when used in JavaScript
我正在尝试使用 JavaScript 代码从 cshtml 视图调用 LaunchUriAsync。下面是我的代码。
try {
let appStatus = Windows.System.Launcher.LaunchUriAsync(new Windows.Foundation.Uri("https://www.google.com")).done(
function (success) {
console.log("launch complete");
if (success) {
console.log("launch success")
} else {
console.log("launch failed")
}
}, function (err) {
console.log("launch error")
});
}
catch (ex) {
console.log("launch throws")
console.log(JSON.stringify(ex))
}
我收到“启动抛出”的输出,但我将空异常记录到控制台,所以我不太了解抛出的异常是什么。知道为什么这可能会抛出吗?
l15=]launchUriAsync 小写 l15=] 有效:
Windows.System.Launcher.launchUriAsync(new Windows.Foundation.Uri("https://www.google.com"))
我正在尝试使用 JavaScript 代码从 cshtml 视图调用 LaunchUriAsync。下面是我的代码。
try {
let appStatus = Windows.System.Launcher.LaunchUriAsync(new Windows.Foundation.Uri("https://www.google.com")).done(
function (success) {
console.log("launch complete");
if (success) {
console.log("launch success")
} else {
console.log("launch failed")
}
}, function (err) {
console.log("launch error")
});
}
catch (ex) {
console.log("launch throws")
console.log(JSON.stringify(ex))
}
我收到“启动抛出”的输出,但我将空异常记录到控制台,所以我不太了解抛出的异常是什么。知道为什么这可能会抛出吗?
l15=]launchUriAsync 小写 l15=] 有效:
Windows.System.Launcher.launchUriAsync(new Windows.Foundation.Uri("https://www.google.com"))