我最近将我的Flask应用程序更新为https。我在应用程序中有一个ajax调用,它将数据发布到http api。在客户端应用程序上升级到https已经破坏了此请求。没有在api上看到请求的迹象(我有一份打印声明)。
# client application
$.ajax({
url: "//api.com/add/id/{{id}}",
type: "POST",
data: {
active: checkbox,
user_name: name
},
dataType: "jsonp",
success: function (response) {
console.log(response);
},
error: function (error) {
console.log(error);
}
});
# response from the api
return '{0}({1})'.format(callback, {'response': 'success'})
我是否需要以任何方式更新回调或请求从客户端的http到https?谢谢