我正在使用 SimpleHTTPServer (在文件夹中调用output
):
python -m SimpleHTTPServer 8080
我有以下文件夹结构:
/output/
images/
figure.svg
index.html
在index.html
(除其他外):
<div class="figure align-right">
<object data="images/figure.svg" type="image/svg+xml"></object>
<p class="caption">Some caption.</p>
<div class="legend">Something</div>
</div>
现在我查看index.html
并http://127.0.0.1:8080/index.html
没有显示该图。为什么?服务器找到该文件,因为它没有提供任何404
代码。
有趣的是,当我index.html
在浏览器中作为本地文件(而不是通过 http 服务器)打开时,图像就会出现。
如果这很重要,我正在使用Opera
。