serialNo = request.POST.get('orderSerialNo', 1234445)
post请求这样获取,为什么会报错啊
AttributeError: 'int' object has no attribute 'POST'
request.POST 的值永远是字符串
request.POST
serialNo = request.POST['orderSerialNo']