如何在Laravel视图中集成Socket.Io

时间:2016-02-20 12:11:32

标签: sockets laravel express socket.io

我目前正在使用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');
});

0 个答案:

没有答案