首页 > 代码库 > Fiddler进行模拟Post提交数据,总为null解决方式

Fiddler进行模拟Post提交数据,总为null解决方式

Fiddler模拟post提交时总是为空,解决办法

如果是表单提交则要在header加上

ContentType:application/x-www-form-urlencoded

如果是要post提交json数据则要要header加上

Content-Type: application/json; charset=utf-8

Fiddler进行模拟Post提交数据,总为null解决方式