开发功能不是特别复杂的web服务,可以考虑使用bottle框架。原因:一、Python开发效率高呀!不信你比比同样的功能Python几行可以搞定?换java试试?换C++试试?作为这几种语言都使用过的我来说,用过java就尽量不用C++,用过Python就尽量不用java,真的不堪回首。
使用bottle框架首先安装。一个指令搞定。
# pip install bottle
分享一个遇到的pip的问题,我Python版本很低2.6.6。本来通过安装yum的epel,已经成功安装了好用的pip。但是每次我用pip命令,最下方都会提示升级
You are using pip version 9.0.3, however version 20.0.2 is available.You should consider upgrading via the \'pip install --upgrade pip\' command
我看这个提示也没什么恶意,就执行了pipinstall–upgradepip。然后pip指令就不能用了,就和升级glibc错误之后,lscd这种shell指令都无法执行是一个效果。而且升级了之后,在想安装回低版本的pip就没有对应的安装包了。yum只能找到20.0.2版本的(老版本会被覆盖难道?)。
http://bootstrap.pypa.io/2.6/get-pip.py
下载了get-pip.py也无法安装成功。最后在上面的地址下载到了2.6版本的安装文件,才成功安装可以使用的pip。(看见地址里的2.6了吗?)
pipinstallbottle成功之后,进入Python命令行importbottle,没报错就是成功了。我的web服务就一个文件bottleweb.py,代码如下
#coding=utf-8
frombottleimport(run,route,get,post,put,delete,request,hook,response,static_file,app)
importjson
import MySQLdb #本例子需要操作数据库,否则可以不写这行,这个数据库包pip估计安装不会成功,我是用yum install MySQL-python成功的
importsys
reload(sys)
sys.setdefaultencoding(\'utf8\')
importbottle
app = bottle.default_app()#处理静态资源需要定义,没有静态资源可以不写这行
#搭建vue脚手架前后台联调时要下面两个@hook内容,否则会报跨域访问资源的错误
@hook(\'before_request\')
defvalidate():
REQUEST_METHOD=request.environ.get(\'REQUEST_METHOD\')
HTTP_ACCESS_CONTROL_REQUEST_METHOD=request.environ.get(\'HTTP_ACCESS_CONTROL_REQUEST_METHOD\')
ifREQUEST_METHOD==\'OPTIONS\'andHTTP_ACCESS_CONTROL_REQUEST_METHOD:
request.environ[\'REQUEST_METHOD\']=HTTP_ACCESS_CONTROL_REQUEST_METHOD
@hook(\'after_request\')
defenable_cors():
response.headers[\'Access-Control-Allow-Origin\']=\'*\'
response.headers[\'Access-Control-Allow-Methods\']=\'GET,POST,PUT,DELETE,OPTIONS\'
response.headers[\'Access-Control-Allow-Headers\']=\'*\'
@route(\'/test2020/dist/<path>\')#静态资源在web服务下的地址,没放前端的静态资源这几个route和app.route可以不写
defstat(path):
returnstatic_file(path,root=\'./dist/\')
@app.route(\'/test2020/dist/static/js/<path>\')
def js(path): #这几个目录我写成这样是因为vue打包完后目录结构就是dist里面static等等
returnstatic_file(path,root=\'./dist/static/js/\')
@app.route(\'/test2020/dist/static/css/<path>\')
defcss(path):
returnstatic_file(path,root=\'./dist/static/css/\')
@get(\'/test2020/date\')#返回某个表中的日期,看sql你就明白了
defhelloins():
db=MySQLdb.connect(\"127.0.0.1\",\"yourusername\",\"yourpassword\",\"yourDBname\",charset=\'utf8\')
cursor=db.cursor()
sql = \"select DISTINCT date from testtable\"
printsql
cursor.execute(sql)
data=cursor.fetchall()
jsondata={}
results=[]
forrowindata:
result={}
result[\'DATE\']=row[0]
results.append(result)
jsondata[\'code\']=0
jsondata[\'datas\']=results
return jsondata #返回json格式为了方便前端vue接收处理,其实返回各种类型都可以
@get(\'/test2020/helloworld\')
def helloworld():
return \'helloworld!\'
if__name__==\'__main__\':
run(host=\'0.0.0.0\',port=2020,debug=True,reloader=True)
bottleweb.py所在目录执行#pythonbottleweb.py,web服务就启动了简单吧?浏览器访问http://127.0.0.1:2020/test2020/helloworld试试
如果你安装了MySQL数据库可以测试test2020/date的url是否能返回结果
数据库只有有下面的数据就可以
前端页面是这个样子的,给用户选择某个日期,用于手机端。
前端是用vue+vux来开发的,开发完打包的成果就是上文提到的dist目录下的东西。本文不详细讨论了。后续我会讲一讲MySQL和vue开发的一些坑。如果觉得上面的代码有点复杂,可以把所有route,app.route的东西删除,把/test2020/date语句块也删除,把@hook删除,MySQL的东西删除,前端的东西也完全不考虑,就是最简单的bottleweb服务了。这样有助于一步一步学习。如果帮到你得话请帮点个在看。