我目前正在使用socket.io在Laravel中开发聊天功能。所以我尝试在刀片视图中集成,但是我得到了这个错误。
错误:ENOENT:没有这样的文件或目录,stat 'd:\ XAMPP \ htdocs中\ FreelancerJob \ PUBLIC \聊天\资源\意见\ UI \聊天\ chat.blade.php' 在错误(本机)
这是我的js文件
var app=require('express')();
var http=require('http').Server(app);
var io = require('socket.io')(http);
app.get('/message',function(req,res){
res.sendFile( __dirname + "/resources/views/ui/Chat/chat.blade.php");
});
http.listen(3000,function(){
console.log('listening on *:3000');
});