Exemplo n.º 1
0
def othertext():
    topic_name = request.args.get('query', default_topic_name)  # 话题名

    topicid = em.getEventIDByName(topic_name)
    event = Event(topicid)
    results = event.getOtherSubEventInfos()

    return json.dumps(results)
Exemplo n.º 2
0
def othertext():
    topic_name = request.args.get('query', default_topic_name) # 话题名

    topicid = em.getEventIDByName(topic_name)
    event = Event(topicid)
    results = event.getOtherSubEventInfos()

    return json.dumps(results)