0

在客户端:

var ws = new WebSocket('ws://localhost:8082/chat?id=123&tid=7');

在服务器端

class MyApp implements MessageComponentInterface {
    protected $clients;

    public function __construct() {
        $this->clients = new \SplObjectStorage;
    }

    public function onOpen(ConnectionInterface $conn) {

        var_dump($conn->WebSocket->request->getQuery()); // I tried to access to query string here, but it did not work
        $this->clients->attach($conn);
    }

...
}

这是我从控制台得到的转储结果

class Guzzle\Http\QueryString#85 (5) {
  protected $fieldSeparator =>
  string(1) "&"
  protected $valueSeparator =>
  string(1) "="
  protected $urlEncode =>
  string(8) "RFC 3986"
  protected $aggregator =>
  NULL
  protected $data =>
  array(0) {
  }
}

我看不到关于我的 URLidtid. 更新:我试图$request在 Http/Route 上转储变量中的所有内容以检查,我可以看到 getQuery 工作,但我怎么能在函数 onOpen 上做同样的事情?

 protected $url =>
 class Guzzle\Http\Url#67 (8) {
   protected $scheme =>
   string(4) "http"
   protected $host =>
   string(9) "localhost"
   protected $port =>
   int(8082)
   protected $username =>
   NULL
   protected $password =>
   NULL
   protected $path =>
   string(5) "/chat"
   protected $fragment =>
   NULL
   protected $query =>
   class Guzzle\Http\QueryString#66 (5) {
     protected $fieldSeparator =>
     string(1) "&"
     protected $valueSeparator =>
     string(1) "="
     protected $urlEncode =>
     string(8) "RFC 3986"
     protected $aggregator =>
     NULL
     protected $data =>
     array(3) {
       ...
     }
   }
 }

消息在客户端和服务器之间正确传输,但查询字符串。任何帮助表示赞赏。

4

1 回答 1

0

我并不真正理解 src\Ratchet\Http 中的以下代码,然后我不确定它是否是错误。

$parameters = array();

        foreach($route as $key => $value) {
            if ((is_string($key)) && ('_' !== substr($key, 0, 1))) {
                $parameters[$key] = $value;
            }
        }

 $url = Url::factory($request->getPath());
        $url->setQuery($parameters);

但我修改如下:

$parameters = $request->getQuery();

我上面的行将覆盖迭代以将某些内容设置到$params. 至少我可以访问查询字符串

于 2014-08-26T11:09:40.543 回答