我正在用流星制作一个简单的聊天应用程序.我的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目录中.
即使我托管图像并使用外部链接,结果也一样.为什么流星阻挡我的应用程序中的图像?
解决方法
您应该在应用程序根文件夹中创建一个名为public的文件夹.
/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.