当前位置:   article > 正文

python中报错:AttributeError: ‘NoneType‘ object has no attribute ‘json‘_attributeerror: 'nonetype' object has no attribute

attributeerror: 'nonetype' object has no attribute 'json

今天在编写python代码,突然遇到一报错:AttributeError: ‘NoneType’ object has no attribute ‘json’,代码如下:

import codecs
import json
import unittest
import ddt

from lib.sendrequest import send_requests
from lib.utlis import *
from setting import case_root,results_root
import logging
import warnings

def case_data(dataname)->list:
    '''
    处理测试用例数据
    :param dataname: 测试用例文件名
    :return: 测试数据
    '''
    test_case=case_root+'/{}.xlsx'.format(dataname)
    test_num=Excel('r',test_case).read()

    testdata=excel_dict(test_num)
    # print(testdata)
    return testdata
# if __name__=='__main__':
#     print(case_data('testcase'))
@ddt.ddt
class TestCase(unittest.TestCase):
    @ddt.data(*case_data('testcase'))
    def test_run_case(self,data):
        '''
        执行测试脚本
        :param data:参数化后测试用例|dict类型
        :return:
        '''
        # self.response=send_requests(data)
        # print("uuuuuuu")
        # print(data)
        response = send_requests(data)
        print(response)
        #
        print('_________')
        warnings.simplefilter('ignore', ResourceWarning)
        # print(response.text)
        logging.info("页面返回信息:%s" % response.json())
        # logging.info('results_root:',results_root)

# if __name__=="__main__":
#     TestCase().test_run_case()
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48

后来打印:
print(response)数据如下:

{1.0: '', 'get': 'post', '相加接口': '相减接口', '参数正常-成功': '参数正常-成功', '': '', '/add': '/less', " {'a': 2, 'b': 1}": "{'a': 2, 'b': 1}", "{'code': 0, 'msg': 'ok', 'value': 3}": "{'code': 1000, 'msg': 'success', 'value': 1}", 0.0: 1000.0, 200.0: 200.0, 'ok': 'success'}
{1.0: '', 'get': 'post', '相加接口': '相减接口', '参数正常-成功': '参数正常-成功', '': '', '/add': '/less', " {'a': 2, 'b': 1}": "{'a': '^code', 'b':'^value'}", "{'code': 0, 'msg': 'ok', 'value': 3}": "{'code': 1000, 'msg': 'success', 'value': -3}", 0.0: 1000.0, 200.0: 200.0, 'ok': 'success'}
  • 1
  • 2

**打印数据类型如下:
print(type(response))

<class 'NoneType'>
None**
  • 1
  • 2

然后我就发现一定是response的数据类型发生了错误,没有变成字典类型,后来一看excel数据表里面的数据取值取错位了,取出来不是相应的字典值,只有如下格式的数据类型才能被**response.json()**所解析:

{'id': 1.0, 'get_type': 'get', 'interface': '相加接口', 'title': '参数正常-成功', 'header': '', 'precondition': 1.0, 'url': '/add', 'data': "{'a': 2, 'b': 1}", 'excepted': "{'code': 0, 'msg': 'ok', 'value': 3}", 'code': 0.0, 'status': 200.0, 'msg': 'ok'}
{'id': 2.0, 'get_type': 'post', 'interface': '相减接口', 'title': '参数正常-成功', 'header': '', 'precondition': '', 'url': '/less', 'data': "{'a': 2, 'b': 1}", 'excepted': "{'code': 1000, 'msg': 'success', 'value': 1}", 'code': 1000.0, 'status': 200.0, 'msg': 'success'}
{'id': 3.0, 'get_type': 'post', 'interface': '相减接口', 'title': '参数正常-成功', 'header': '', 'precondition': '', 'url': '/less', 'data': "{'a': '^code', 'b':'^value'}", 'excepted': "{'code': 1000, 'msg': 'success', 'value': -3}", 'code': 1000.0, 'status': 200.0, 'msg': 'success'}
  • 1
  • 2
  • 3

敲黑板,所以以后大家再进行相应的数据转换的时候,一定要把被转换的数据类型搞清楚,然后再进行json转换

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/759087
推荐阅读
相关标签
  

闽ICP备14008679号