我正在尝试从服务器访问 url 到我的 webview 中。但它返回以下错误;
[ERROR] : Error loading: (null), Error: Error Domain=WebKitErrorDomain Code=101 "The operation couldn’t be completed. (WebKitErrorDomain error 101.)"
当我将相同的 URL(来自 webservice)硬编码到 webview 中时,我能够获取相应的网页。[url : "https:\.......%20n%20..."]
webview = Ti.UI.createWebView({
height : Ti.UI.SIZE,
top : 0,
width : Ti.UI.SIZE,
html : service.sampleURL,
});
如何直接从服务器使用 URL 而不是硬编码?