嗨,当我尝试使用GET
方法或POST
方法时,我正在将Flask作为后端使用
错误:网络错误
在createError时(F:\ React Native \ project \ node_modules \ axios \ lib \ core \ createError.js:16)
在XMLHttpRequest.handleError(F:\ React Native \ project \ node_modules \ axios \ lib \ adapters \ xhr.js:81)
....
这是我的反应本机代码
axios.get('https://localhost:6000')
.then(function (response) {
alert("res")
console.log(response);
})
.catch(function (error) {
console.log(error);
});
这是我的烧瓶代码
from flask import Flask, request, jsonify
from flask_cors import CORS
app = Flask(__name__)
CORS(app)
@app.route('/')
def index():
return 'Api Calling'
if __name__ == '__main__':
app.run(debug=True)