有没有办法将标头添加到标准HTML标签?
我们拥有的是: /path/to/image.png
除了这实际上是一个RESTful端点,它需要一个userID标头。
GET /path/to/image.png
Header
userId: BobLoblaw
这将返回一个字节流和poof,image。
但是,我们希望在图像标记中使用此权限。如果没有Apache强制传出userId,这可能吗?
我希望像
这样的东西imageProvider.get().then(function(response) {
// do something with the resultant bytestream
})
注意 - 这不是base64转码。这是一个实际的图像流。
答案 0 :(得分:2)
不,那是不可能的。您无法控制浏览器发送的请求标头以及<img>
标记的GET请求。
在网址中使用查询参数。