在我的应用程序中,我使用 express 框架来提供客户端文件。但是在为 html 元素提供背景图像时。它的显示无法加载给定的 url。
var express = require('express')
, http = require('http');
var app = express();
app.configure(function(){
app.use(express.static(__dirname + '/public'));
});
var server = http.createServer(app);
var io = require('socket.io').listen(server);
server.listen(8000);
在公共文件夹中,我创建了 javascripts、stylesheets、images 文件夹。现在我正在获取 javascripts 和 stylesheets。但我不知道如何访问图像文件。
.logo {
background:url('localhost:8080\logo.jpg');//This image url not loading
float:left;
width:20px
height:20px;
}