python webkitgtk xmlhttprequest протокол файла - PullRequest
1 голос
/ 19 мая 2011

Как включить xmlhttprequest для протокола file: // в pywebkit?

так же, как в chrome

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

1 Ответ

5 голосов
/ 20 мая 2011

Установите свойство enable-file-access-from-file-uris на WebView:

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>
...