Flask之ajax操作示例

python3.6,flask使用简例,

 目录结构

Flask之ajax操作示例_第1张图片

index2.html 


    
    
    
    
        


    



  

jQuery Example

+ = ?

calculate server side

myserver2.py

# coding:utf-8

from flask import *
from flask import request

app = Flask(__name__)

@app.route('/_add_numbers')
def add_numbers():
    a = request.args.get('a', 0, type=int)
    b = request.args.get('b', 0, type=int)
    return jsonify(result=a + b)

@app.route('/')
def index():
    html=render_template('index2.html')
    return html

@app.route('/test_post', methods=['GET', 'POST'])
def test_post():
    return '{"name":"zhangsan"}'

if __name__=='__main__':
    app.run(debug=True,host="0.0.0.0")

 

你可能感兴趣的:(flask,python)