JQuery Img Attr 请求获取服务器发送的标头
我想做的是使用 jQuery 请求图像(在本例中为图表)。 在 jQuery 中,我在图像上设置 src 属性,该属性按预期从服务器拉取图形。
$("#graphImage").attr("src", graphUrl);
我希望能够通过此请求发送一些标头信息并让 jQuery 读取它。
我该怎么办呢。我的一个朋友建议使用 ajax 将图像下载到 blob,然后将 blob 写入图像标签......不知道如何做到这一点。
What I want to do is use jQuery to request an image (a graph in this case).
In jQuery I'm setting the src
attribute on my image which pulls down the graph from the server as expected.
$("#graphImage").attr("src", graphUrl);
I want to be able to send some Header information down with this request and have jQuery read it.
How can I do this. A friend of mine recommended downloading the image using ajax to a blob then writing the blob to the image tag...not sure how this can be done.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在非 IE 浏览器上尝试此操作 < 7. 对于
将图像转换为base64字符串的代码
Try this for Non IE browsers < 7. For
Code to convert image to base64 string
我不知道如何读取响应来加载图像,但提取响应标头是直接的。
I don't know about reading the response to load an image but pulling the response headers is straight forward.