1

我正在尝试通过将令牌复制并粘贴到输入框中来打开频道,但是控制台返回,

无效+令牌。

这是 localhost:8080/ 的代码

<html>
  <head>
    <script type="text/javascript" src="https://talkgadget.google.com/talkgadget/channel.js"></script>
    <script>
      function OpenChannel(){
        channel = new goog.appengine.Channel(document.getElementById('Token').value);
        socket = channel.open();
        socket.onmessage = function(message){
          console.log(message);
        }
        socket.onopen = function(){
          connected = true;
          console.log('opened');
        }
        socket.onerror = function(err){
          console.log(err.description);
        }
        socket.onclose = function(){
          console.log('closed');
        }
      }
    </script>
  </head>
    <body>
      Token: <input id="Token"></input><br/>
      <button onclick="OpenChannel()">Open Channel</button>
    </body>
</html>

我通过打开“localhost:8080/token?name=...”来创建令牌,它将通道令牌写入页面。这是该页面的 python 类:

class TokenPage(webapp2.RequestHandler):
  def get(self):
    token = channel.create_channel(self.request.get('name'))
    self.response.write(token)

我几乎已经逐行复制了文档行,所以我不知道出了什么问题。

解决方案:

代替

<script type="text/javascript" src="https://talkgadget.google.com/talkgadget/channel.js"></script>

<script type="text/javascript" src="/_ah/channel/jsapi"></script> .

4

1 回答 1

1

你有没有尝试过:

channel = new goog.appengine.Channel(document.getElementById('Token').value);
于 2013-08-07T23:09:12.220 回答