gpt4 book ai didi

python webkitgtk xmlhttprequest文件协议(protocol)

转载 作者:太空宇宙 更新时间:2023-11-04 09:18:09 27 4
gpt4 key购买 nike

如何在pywebkit中启用file://协议(protocol)的xmlhttprequest?

就像 chrome 一样

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

最佳答案

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.htmlfile://./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>

关于python webkitgtk xmlhttprequest文件协议(protocol),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6056357/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com