3

我尝试使用烧瓶的主宰框架,以便在http://flask.pocoo.org/snippets/80/上的烧瓶片段之后将实时信息发送到客户端浏览器 。

当我尝试为我的代码实现它时,它仍然没有在客户端浏览器中提供实时输出。

这是我的python代码:

import flask
from flask.views import MethodView
from tweetStreamsRT import StreamerRt 
from juggernaut import Juggernaut


app = flask.Flask(__name__)
app.secret_key = "xxxxx"
PORT = 8080

class View(MethodView):

    def get(self):
        return flask.render_template('index.html')

    def post(self):
        results = StreamerRt().filter(track=[flask.request.form['event']])            
        jug = Juggernaut()
        jug.publish('channel', results)
        return self.get()


app.add_url_rule('/', view_func = View.as_view('index'), methods=['GET', 'POST'])
app.debug = True

if __name__ == "__main__":
    print 'Listening on http://localhost:%s' % PORT
    app.run()

我的 html 页面是从基本 html 页面继承的:

{% extends "base.html" %}
{% import "forms.html" as forms %}


{% block page_header %}
  <div class="page-header">
    <h1>Welcome</h1>
  </div>
{% endblock %}
{% block content %}
  <h2>Enter the Event you would like to follow</h2>
      <form action="/" method="post">
            <input type="text" name="event" />
            <input type="submit" value="Submit Query" />
          </form>
            Results:
            <pre>
                <script type="text/javascript" charset="utf-8">
                    var jug = new Juggernaut;
                    jug.subscribe("channel", function(data){
                    alert("Got data: " + data);});
                </script>

            </pre> 
{% endblock %}

我很困惑为什么什么都没有发送到客户端浏览器。

谢谢

4

2 回答 2

1

Juggernout 已弃用http://blog.alexmaccaw.com/killing-a-library 如果您要围绕它构建您的应用程序,那么是时候切换到其他东西了。喜欢 EventSource http://www.html5rocks.com/en/tutorials/eventsource/basics/

于 2013-01-21T17:04:59.013 回答
1

正如另一个答案所述,剑圣现在已被弃用。我建议使用另一个 PUB/SUB 框架,例如Faye

于 2013-01-23T14:34:44.160 回答