我已经尝试了一些简单的例子来尝试它们,但没有人适合我。以下是一个示例A WebSocket Mojolicious/DBI Example
我在端口5000上使用plackup运行它,一切都应该正常工作。但是当我尝试添加一些我在终端上看到的记录时:
[Sat Mar 9 11:05:57 2013] [debug] GET /insert (Anonymojo).
[Sat Mar 9 11:05:57 2013] [debug] Template "not_found.development.html.ep" not found.
[Sat Mar 9 11:05:57 2013] [debug] Template "not_found.html.ep" not found.
[Sat Mar 9 11:05:57 2013] [debug] Rendering cached inline template.
[Sat Mar 9 11:05:57 2013] [debug] Rendering cached inline template.
[Sat Mar 9 11:05:57 2013] [debug] 404 Not Found (0.012583s, 79.472/s).
127.0.0.1 - - [09/Mar/2013:11:05:57 +0200] "GET /insert HTTP/1.1" 404 6440 "-" "-"
当我在“/ insert”上定位浏览器时,我得到了几乎相同的(exept UserAgent部分)结果。
在示例脚本中,定义了websockets路由,但它永远不会被命中:
# setup websocket message handler
websocket '/insert' => sub {
那么,这里可能有什么问题?
答案 0 :(得分:7)
Websockets(以及其他实时功能IIRC)仅适用于Mojolicious服务器:守护进程,morbo和hypnotoad。你的例子是否在morbo下工作?