0

如何在 Metro 风格应用程序的 webview 控件的源属性中发送带有 URL 的参数。

4

2 回答 2

0

您只需将它们添加到 URL。

 source="http://myurl/?param1=hello&param2=world"
于 2012-10-10T12:56:51.097 回答
0

或者也可以注入一个javascript文件与网页进行通信:

Uri uri = new Uri("ms-appx:///js/script.js");
StorageFile file = await StorageFile.GetFileFromApplicationUriAsync(uri);
string text = await FileIO.ReadTextAsync(file); //reading content as string
var script = "(function(){" + text + "})()";
于 2012-10-10T19:35:34.250 回答