我在烧瓶上有一个非常简单的安静api。
#!flask/bin/python
from flask import Flask, jsonify, Response
app = Flask(__name__)
@app.route('/todo/api/v1.0/notes', methods=['GET'])
def get_tasks():
return jsonify({'key': 'value'})
if __name__ == '__main__':
app.run(debug=True)
我有这样的AngularJS控制器:
var app = angular.module('notesApp',['angular-markdown-editable']);
app.controller('notesController',function($scope, $http, $window){
$http({
method: 'GET',
url: "http://127.0.0.1:5000/hello"
}).then(function successCallback(response) {
$window.alert(":)");
}, function errorCallback(response) {
$window.alert(":(");
});
});
问题:我没有收到任何对象(errorCallback总是执行)。
当我尝试:
curl -i http://127.0.0.1:5000/hello
我有结果:`
HTTP/1.0 200 OK
Content-Type: text/html; charset=utf-8
Content-Length: 5
Server: Werkzeug/0.11.10 Python/2.7.6
Date: Wed, 25 May 2016 03:09:54 GMT
Hello
当我的应用程序向服务器发送请求时,我有:
* Running on http://127.0.0.1:5000/ (Press CTRL+C to quit)
* Restarting with stat
* Debugger is active!
* Debugger pin code: 319-334-341
127.0.0.1 - - [25/May/2016 05:58:20] "GET /hello HTTP/1.1" 200 -
当我尝试从文件或远程服务器获取数据时,一切正常。 我的本地服务器只有问题。
P.S。对不起我的英文:)
答案 0 :(得分:0)
解决。 我有" CORS标题' Access-Control-Allow-Origin'缺失"错误。 How to solve it.