私はRESTful APIについて研究しています。テストする小さなサーバーとコンシューマを作成することにしました。RESTful API - Flask - > Jquery - エラー
私はサーバーとしてFlaskを使用していますが、私はこのAPIを消費するためにインターネットを利用しました。しかし、私はいくつか問題があります。
コンソール上のエラーメッセージは、この意見:XMLHttpRequest cannot load http://127.0.0.1:5000/api/tasks. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access.
をしかし、私はそれができるかわかりません。
フラスコサーバコード:jqueryのを使用して
from flask import Flask, jsonify
app = Flask(__name__)
tasks = [
{
'id':1,
'title': u'Estudo',
'description': u'Sistemas Distribuidos',
'done':True
},
{
'id':2,
'title': u'Monitoria',
'description': u'Programacao e Algoritmos',
'done': False
}
]
@app.route('/')
def index():
return "URL PARA O ACESSO DA API: '/api/tasks'"
@app.route('/api/tasks', methods=['GET'])
def get_tasks():
return jsonify({'tasks': tasks})
if __name__ == '__main__':
app.run(debug=True)
例コード:
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
<meta charset="utf-8">
<title>Mashape Query</title>
<script>
function doIt() {
var output = $.ajax({
url: 'http://127.0.0.1:5000/api/tasks', // The URL to the API. You can get this by clicking on "Show CURL example" from an API profile
type: 'GET', // The HTTP Method, can be GET POST PUT DELETE etc
data: {}, // Additional parameters here
dataType: 'json',
success: function(data) {
//console.log(data);
alert(data);
document.getElementById("output").innerHTML = data.source;
},
error: function(err) { alert(err.getText); }
});
}
</script>
</head>
<body>
<button onclick="doIt()">Run the request</button>
<div id="output">The API request is:</div>
</body>
</html>