POSTリクエストを介してjsonオブジェクトを受け入れるいくつかのビューを持つdjangoアプリケーションがあります。json オブジェクトは中程度の複雑さで、いくつかのネスト レイヤーがあるため、次に示すように、json ライブラリを使用して raw_post_data を解析しています。
def handle_ajax_call(request):
post_json = json.loads(request.raw_post_data)
... (do stuff with json query)
次に、これらのビューのテストを書きたいと思います。残念ながら、json オブジェクトをクライアントに渡す方法がわかりません。私のコードの最も単純なバージョンは次のとおりです。
def test_ajax_call(self):
c = Client()
call_command('loadfixtures', 'temp-fixtures-1') #Custom command to populate the DB
J = {
some_info : {
attr1 : "AAAA",
attr2 : "BBBB",
list_attr : [ "x", "y", "z" ]
},
more_info : { ... },
info_list : [ 1, 22, 23, 24, 5, 26, 7 ]
}
J_string = json.dumps(J)
response = c.post('/ajax/call/', data=J_string )
テストを実行すると、次のように失敗します。
AttributeError: 'str' object has no attribute 'items'
Client.post メソッドで JSON オブジェクトを渡すにはどうすればよいですか?