摘要: 1 def find_worldByName(c_name,continent): 2 print(c_name) 3 print(continent) 4 sql = " SELECT * FROM world WHERE 1=1 " 5 if(c_name!=None): 6 sql=sql+" 阅读全文
posted @ 2021-04-11 15:51 靠谱杨 阅读(1239) 评论(0) 推荐(0) 编辑
摘要: 一、fetch请求时,request.json能获取到数据,request.form获取不到数据 1 var data = {'name':'test'}; 2 3 fetch('http://localhost:8000/v1/user/get', { 4 method: 'POST', // o 阅读全文
posted @ 2021-04-11 15:28 靠谱杨 阅读(1822) 评论(0) 推荐(0) 编辑
摘要: ajax向后台发送数据: ①post方式 ajax: @app.route("/find_worldByName",methods=['POST']) type:'post', data:{'cname':cname,'continent':continent},这是post方式传值那么在后台接收就 阅读全文
posted @ 2021-04-11 14:06 靠谱杨 阅读(2849) 评论(0) 推荐(1) 编辑