后台服务器的测试
Posted 我的代码笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了后台服务器的测试相关的知识,希望对你有一定的参考价值。
一、
from flask import Flask,Response,request
app=Flask(__name__,static_folder=‘static‘)
@app.route(‘/‘)
def index():
return ‘var a="hellow"‘
@app.route(‘/allow‘,methods=[‘get‘,‘post‘])
def allow():
headers={
‘Access-Control-Allow-Origin‘:‘*‘,
‘Access-Control-Allow-Content-Type‘:‘*‘
}
uu=request.form
res=Response("allow",headers=headers)
print(123)
print(request.form[‘password‘])
print(uu)
return res
@app.route(‘/jsonp‘)
def jsonp():
return ‘‘‘function callback(){
return ‘helloworld‘
}
‘‘‘
app.run(port=80,debug=True,threaded=True)
以上是关于后台服务器的测试的主要内容,如果未能解决你的问题,请参考以下文章