Python flask框架 request.json和request.form的区别
一、fetch请求时,request.json能获取到数据,request.form获取不到数据
1 var data = {'name':'test'};
2
3 fetch('http://localhost:8000/v1/user/get', {
4 method: 'POST', // or 'PUT'
5 body: JSON.stringify(data), // data can be `string` or {object}!
6 headers: new Headers({
7 'Content-Type': 'application/json'
8 })
9 }).then(res => res.json())
10 .catch(error => console.error('Error:', error))
11 .then(response => console.log('Success:', response));
二、使用ajax的时候,request.json获取不到数据,request.form能获取到数据
1 $.ajax({
2 url:"http://localhost:8000/v1/user/get",
3 type:'post',
4 dataType:'json',
5 data:{'type':'ffxc','page':'1','per_page':'10'},
6 success:function(result){
7 console.log(result);
8 }
9 });
三、使用python的requests的post,request.json获取不到数据,request.form能获取到数据
1 import requests
2 data = {'name':'test'}
3 url = '
4 r = requests.post(url, data=data)
原文链接:https://coding.imooc.com/learn/questiondetail/70536.html
好看请赞,养成习惯:) 本文来自博客园,作者:靠谱杨, 转载请注明原文链接:https://www.cnblogs.com/rainbow-1/p/14644004.html
欢迎来我的51CTO博客主页踩一踩 我的51CTO博客
文章中的公众号名称可能有误,请统一搜索:靠谱杨的秘密基地