python webkitgtk xmlhttprequest 文件协议

发布于 2024-11-08 13:03:21 字数 275 浏览 0 评论 0原文

如何在 pywebkit 中为 file:// 协议启用 xmlhttprequest ?

就像 Chrome

http://www.google .com/support/forum/p/Chrome/thread?tid=171316324d16747b&hl=en

How to enable xmlhttprequest for file:// protocol in pywebkit ?

just like chrome does

http://www.google.com/support/forum/p/Chrome/thread?tid=171316324d16747b&hl=en

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只想待在家 2024-11-15 13:03:21

WebView 上设置 enable-file-access-from-file-uris 属性:

view = webkit.WebView()
settings = view.get_settings()
settings.set_property('enable-file-access-from-file-uris', 1)
view.open('file://./foo.html')

写入 内容的示例文件 foo.html file://./bar.html 进入正文:

<html>
<head><script type="text/javascript" src="jquery-1.4.4.js"></script></head>
<body><script>
$.ajax({url: 'file://./bar.html', success: function(data) {
    document.write(data);
    }
});
</script></body></html>

Set the enable-file-access-from-file-uris property on WebView:

view = webkit.WebView()
settings = view.get_settings()
settings.set_property('enable-file-access-from-file-uris', 1)
view.open('file://./foo.html')

Example file foo.html which writes contents of file://./bar.html into the body:

<html>
<head><script type="text/javascript" src="jquery-1.4.4.js"></script></head>
<body><script>
$.ajax({url: 'file://./bar.html', success: function(data) {
    document.write(data);
    }
});
</script></body></html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文