25

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 オブジェクトを渡すにはどうすればよいですか?

4

1 に答える 1

54

ドキュメントcontent_typeは、パラメーターをclient.postに渡すと、値をドキュメントとして扱い、data直接 POST することを暗示しているようです。だからこれを試してください:

response = c.post('/ajax/call/', content_type='application/json', data=J_string)
于 2012-08-03T20:13:51.547 に答える