我有一个API,我可以得到一个"快照"来自我的IP摄像头。如果我使用此行,我的浏览器将返回并显示图像。
http://my_NAS_IP:PORT/webapi/entry.cgi?camStm=1&version="8"&cameraId=1&api="SYNO.SurveillanceStation.Camera"&preview=true&method="GetSnapshot"&_sid=SESSION_ID
但是当我尝试将其放入html中时,它无法正常工作。
<!DOCTYPE html>
<html>
<body>
<img src="my_NAS_IP:PORT/webapi/entry.cgi?camStm=1&version="8"&cameraId=1&api="SYNO.SurveillanceStation.Camera"&preview=true&method="GetSnapshot"&_sid=SESSION_ID"
/>
</body>
</html>
对于行中的许多"
?如何格式化以在页面上显示图像?
答案 0 :(得分:1)
是的,您不能在CREATE TABLE entity (
-- columns that are shared among all entities
);
CREATE TABLE entity_a (
-- columns that are unique for this entity type
) INHERITS (entity);
CREATE TABLE entity_b (
-- columns that are unique for this entity type
) INHERITS (entity);
包围的引号中使用"
字符。对外部字符串使用单引号"
。
答案 1 :(得分:1)
只需将您的img
标记括在单引号中
<img src='my_NAS_IP:PORT/webapi/entry.cgi?camStm=1&version="8"&cameraId=1&api="SYNO.SurveillanceStation.Camera"&preview=true&method="GetSnapshot"&_sid=SESSION_ID'/>
答案 2 :(得分:0)
<img src="my_NAS_IP:PORT/webapi/entry.cgi?camStm=1&version='8'&cameraId=1&api='SYNO.SurveillanceStation.Camera'&preview=true&method='GetSnapshot'&_sid=SESSION_ID"
/>
在......
中使用单引号