我制作一个永远运行两个线程的小应用程序。我带了#34;你好世界"来自https://cloud.google.com/appengine/docs/python/gettingstartedpython27/helloworld的示例 (这本身对我来说很好)并且只是添加了我的代码:
class MainPage(webapp2.RequestHandler):
def get(self):
q1 = Queue()
q2 = Queue()
cs = Thread(target=Control_service.control_service_d, args=[q1,q2])
cs.setDaemon(True)
m = Thread(target=Machine.machine_d, args=[q2])
m.setDaemon(True)
cs.start()
m.start()
time.sleep(6)
q1.put(Control_service.requestObj('ravit',0))
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('Hello, World!')
application = webapp2.WSGIApplication([('/', MainPage),], debug=True)
我从两个线程中的打印件中看到它们工作正常,但在访问localhost时我再也看不到hello world了:8080
我的代码有什么问题?
感谢