私はhtmlテンプレートでそれらをレンダリングできるように、キー値のペアの形式でjsonデータを印刷しようとしています。djangoでキー値のペアの形式でjsonデータを印刷する
def ecpd(request):
r= requests.get('http://jira.xxx.xxx.com/rest/api/2/issue/key-XXX',auth=HTTPBasicAuth('user','pass'),headers = {'Content-Type' : 'application/json'})
jsonDict = json.loads(r.content)
return HttpResponse(jsonDict['fields'])
応答として、私は "フィールド"のキーのリストを取得しています。 のように:customfield_10070customfield_10071customfield_10072customfield_10073customfield_13221customfield_10074customfield_13220customfield_10075 私はdict形式でキーと値のペアが必要です。
:
とテンプレートで:、ちょうどあなたのテンプレートのコンテキストにそれを渡しますか? – geckos