mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-16 11:42:04 +08:00
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
import { WebView } from "tns-core-modules/ui/web-view";
|
|
import * as fs from "tns-core-modules/file-system";
|
|
|
|
let webView: WebView;
|
|
export function webViewLoaded(args) {
|
|
webView = args.object;
|
|
}
|
|
|
|
const relUrl = "~/web-view/query.html" + "?foo=bar&urlType=relative";
|
|
const absoluteUrl = `${fs.knownFolders.currentApp().path}/web-view/query.html` + "?foo=bar&urlType=absolute";
|
|
const fileUrl = `file:///${fs.knownFolders.currentApp().path}/web-view/query.html` + "?foo=bar&urlType=filePrefix";
|
|
const htmlString = `<html>
|
|
<head>
|
|
<title>Test Page</title>
|
|
<meta charset="utf-8" />
|
|
</head>
|
|
<body>
|
|
<div style="color:green" id="result">Just a string ...</div>
|
|
</body>
|
|
</html>`;
|
|
|
|
export function loadRelative() {
|
|
setSrc(relUrl);
|
|
}
|
|
export function loadAbsolute() {
|
|
setSrc(absoluteUrl);
|
|
}
|
|
export function loadFile() {
|
|
setSrc(fileUrl);
|
|
}
|
|
export function loadString() {
|
|
setSrc(htmlString);
|
|
}
|
|
|
|
function setSrc(src) {
|
|
console.log("Setting src to: " + src);
|
|
webView.src = src;
|
|
}
|