Ajax,python数据库,cgi,

前端之家收集整理的这篇文章主要介绍了Ajax,python数据库,cgi,前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

首先是浏览器发起请求


 $.ajax({
	url: url,data: request,//dataType: "json",success: function( data ) {
		response( data );
						
	},error: function() {
		console.log()
		response([]);
	}
});

url一般是要响应的py文件,data类型自己定义,实际的data在network里面可以看到

除了ajax post也是可以得

$.post("cgi-bin/similar.py",{name: dataroot,threshold:0.2},function(data,status){    
  var jsons=$.parseJSON(data);
});





header标签里面 Query String Parameters 里面就是传给.py文件的data,可以看到是term:ab 这样的键值形式 .py文件返回的数据再Response标签里面、

python版本用cgi和sqlite数据库 ,可以看到用busiId来调用从浏览器传入的数据,cgi.FieldStorage()用来存储传入的数据,调用方式就是busiId['term'].value这样的形式。

import sqlite3
import json
import cgi
cx=sqlite3.connect("d:/database8.db")
cur=cx.cursor()

busiId=cgi.FieldStorage()


cur.execute("select bname,bcount from business where bname like '%"+busiId['term'].value+"%' order by bcount desc limit 10")

print "Content-type: text/html\n"
print json.dumps(cur.fetchall())


cur.close()
cx.commit()
cx.close()
原文链接:https://www.f2er.com/ajax/163347.html

猜你在找的Ajax相关文章