环境:python36 ,sqlserver
1.python 通过获得数据库的数据 data = cursor.fetchall()后,如何传递给js?
js 通过 xhr 对象 的 xhr.responseText获取数据
2.js 通过xhr.send()传递的参数,python 通过什么方法在后台获取?
环境:python36 ,sqlserver
1.python 通过获得数据库的数据 data = cursor.fetchall()后,如何传递给js?
js 通过 xhr 对象 的 xhr.responseText获取数据
2.js 通过xhr.send()传递的参数,python 通过什么方法在后台获取?
python编写一个 web程序,这个有很多框架可以实现。然后把你的数据序列化成json,返回。
js端用jquery的 $ajax.get 请求你的python的服务器地址,就可以得到数据了。