2

给定下面的代码,我如何从 Fu::Bar::dosomething 中通过为“/wsinit”打开的 websocket 向客户端发送消息?

package Fu;
use Mojo::Base 'Mojolicious';

sub startup
{
    my $r = shift->routes;

    $r->get('/')->to(controller => 'bar', action => 'init');

    $r->websocket('/wsinit')->to(controller => 'bar', action => 'wsinit');

    $r->get('/dosomething')->to(controller => 'bar', action => 'dosomething');
}

1;

# -- ^L
# -- 

package Fu::Bar;
use Mojo::Base 'Mojolicious::Controller';

sub init
{
    my $self = shift;
    $self->render(text => 'init');
}
sub wsinit
{
    my $self = shift;
    $self->app->log->debug( 'Websocket opened.' );
    $self->send({json => {fu => 'bar'}});
}
sub dosomething
{
    my $self = shift;
}

1;

请忽略以下多余的措辞,其目的是满足 stackoverflow 的详细信息/代码要求,这些要求目前阻止我发布我的问题。

4

1 回答 1

3

您需要通过客户端代码中的 javascript 连接到 websocket 。您拥有的代码看起来应该可以在建立连接后发送给客户端。

#!/usr/bin/env perl

use Mojolicious::Lite;

any '/' => 'index';

websocket '/ws' => sub {
  my $c = shift;
  $c->send({ json => { foo => 'bar' } });
};

app->start;

__DATA__

@@ index.html.ep

<!DOCTYPE html>
<html>
<head>
  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
</head>
<body>
  <p id="result"></p>
  %= javascript begin
    var ws = new WebSocket('<%= url_for('ws')->to_abs %>');
    ws.onmessage = function (e) {
      $('#result').text(e.data)
    };
  % end
</body>
</html>

如果问题是关于dosomething方法的,我不明白这个问题。将其作为操作中的方法调用,或者将其连接为其他路由的操作。如果这不能回答问题,请澄清您的请求工作流程。

于 2013-06-26T01:19:53.593 回答