2

我正在为一个有许多 flash 文件的网站制作一个 Greasemonkey 脚本。我想对闪存进行哈希处理,问题是闪存文件高达 10 兆字节。

这很慢;我希望能够只抓取前 80KB 进行散列。最终结果将是一种将某些包含不需要内容的 Flash 文件列入黑名单的简单方法。我的脚本如何只抓取文件的前 80 KB(左右)?

4

1 回答 1

9

Send the range header in your AJAX request.

For example:

$.ajax ( {
    url:        'http://TARGET_SERVER.COM/TARGET_PATH/TARGET_FILE.FLV',
    headers:    { Range: "bytes=0-80000" },
    success:    function (Resp) {
                    console.log(Resp);
                }
} );

(For files that are on the same-domain as the target page.)



For cross-domain files use GM_xmlhttpRequest():

GM_xmlhttpRequest ( {
    method:     "GET",
    url:        'http://TARGET_SERVER.COM/TARGET_PATH/TARGET_FILE.FLV',
    headers:    { Range: "bytes=0-80000" },
    onload:     function (Resp) {
                    console.log(Resp.responseText);
                }
} );
于 2012-06-16T04:49:00.660 回答