1

目前,我尝试使用任务队列。但我没有看到任何关于这个问题的完整样本。

所以请给我一些用python编写的谷歌应用引擎中的任务队列示例。

4

2 回答 2

3

进口:

from google.appengine.api import taskqueue

定义并运行:

taskqueue.add(url='/service', params={'user': user}, method="GET")

url是导致代码在队列中运行的 RequestHandler

参数可以是常规的 url 参数

于 2014-12-23T11:32:29.670 回答
1

Google 文档中的示例简单但完整。 http://code.google.com/appengine/docs/python/taskqueue/overview.html

于 2011-04-27T13:58:33.150 回答