不允许加载本地资源流星应用程序

时间:2016-11-26 16:27:20

标签: html css image meteor

我想在我的meteor webapp中添加背景图片:

background: url('../public/img/car.jpg') no-repeat center center fixed;

但后来我收到以下错误消息:

jquery.js?hash=c334cf5…:3662 Not allowed to load local resource: file:///D:/project/app/public/car.jpg

我错过了什么?

2 个答案:

答案 0 :(得分:1)

我认为您可能误解了public文件夹的使用(请参阅directory structure上的文档)。该文件夹中的任何内容都将在/网址上静态提供。所以我认为你需要改变的是:

background: url('/img/car.jpg') no-repeat center center fixed;

答案 1 :(得分:0)

我终于找到了答案: meteor app: images not loading

  

/ public中的文件按原样提供给客户端

所以我必须排除文件路径,只需输入const int x = 0; const int& r = x; const int* p1 = x; // Works (p1 = 0) const int* p2 = r; // error C2440: 'initializing': cannot convert from 'const int' to 'const int *'