I have a view that returns JSON data. I want to get that data from another view as well, so I tried calling the JSON view from it. However, a Response
was returned rather than the JSON data. How can I call one view from another view and get the data?
@app.route('/promoters/<int:id>', methods=['GET'])
def get_promoter(id):
...
>>> get_promoter(3)
<Response 440 bytes [200 OK]>
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…