html – meteor app:图片无法加载

前端之家收集整理的这篇文章主要介绍了html – meteor app:图片无法加载前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在用流星制作一个简单的聊天应用程序.我的HTML是:
<body>
    <h1 align="center">tomomi-chat</h1>
    <img src="original.gif">
    <div class="container" align="center">
    {{>entryfield}}
    </div>
    <br>
    <div class="container">
    {{>messages}}
    </div>

图像不会加载到本地服务器上.由于应用程序非常简单,除了目录中的“.meteor”文件夹之外没有其他文件夹. .js,.css和.html文件都在app目录中.

即使我托管图像并使用外部链接,结果也一样.为什么流星阻挡我的应用程序中的图像?

部署:http://tomomi.meteor.com/

解决方法

您应该在应用程序根文件夹中创建一个名为public的文件夹.

Meteor documentation

/public

Files in /public are served to the client as-is. Use this to store assets such as images. For example,if you have an image located at /public/background.png,you can include it in your HTML with or in your CSS with background-image: url(/background.png). Note that /public is not part of the image URL.

原文链接:https://www.f2er.com/html/231874.html

猜你在找的HTML相关文章