gpt4 book ai didi

javascript - 将参数传递给 BLOB 对象 URL

转载 作者:搜寻专家 更新时间:2023-10-31 22:28:19 25 4
gpt4 key购买 nike

假设我有一个 html 文件的引用作为 Blob b,我为它创建了一个 URL,url = URL.createObjectURL(b);

这给了我一些看起来像 blob:http%3A//example.com/a0440b61-4850-4568-b6d1-329bae4a3276 的东西

然后我尝试使用 GET 参数 <iframe>?foo=bar 中打开它,但它没有用。如何传递参数?

var html ='<html><head><title>Foo</title></head><body><script>document.body.textContent = window.location.search<\/script></body></html>',
b = new Blob([html], {type: 'text/html'}),
url = URL.createObjectURL(b),
ifrm = document.createElement('iframe');
ifrm.src = url + '?foo=bar';
document.body.appendChild(ifrm);

// expect to see ?foo=bar in <iframe>

DEMO

最佳答案

我不认为向 url 添加查询字符串会起作用,因为它本质上会将它更改为不同的 url。
但是,如果您只是想传递参数,您可以使用哈希将片段添加到 url

ifrm.src = url + '#foo=bar';

http://jsfiddle.net/thpf584n/1/

关于javascript - 将参数传递给 BLOB 对象 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27581335/

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