JSON をビューに投稿します。データを解析してデータベースに追加したいと考えています。
プロパティを取得し、配列を反復処理する必要がname
ありtheme
ますpages
。私のJSONは次のとおりです。
{
"name": "xaAX",
"logo": "",
"theme": "b",
"fullSiteLink": "http://www.hello.com",
"pages": [
{
"id": "1364484811734",
"name": "Page Name",
"type": "basic",
"components": {
"img": "",
"text": ""
}
},
{
"name": "Twitter",
"type": "twitter",
"components": {
"twitter": {
"twitter-username": "zzzz"
}
}
}
]
}
これが私がこれまでに持っているものです:
def smartpage_create_ajax(request):
if request.POST:
# get stuff and loop over each page?
return HttpResponse('done')