小编典典

django:使用json对象测试基于POST的视图

ajax

我有一个带有几个视图的django应用程序,这些视图通过POST请求接受json对象。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对象?


阅读 213

收藏
2020-07-26

共1个答案

小编典典

该文档似乎暗示着,如果您将content_type参数传递给client.post,它将把该data值视为一个文档并直接过帐。所以试试这个:

response = c.post('/ajax/call/', content_type='application/json', data=J_string)
2020-07-26