Angular HTTP 请求被阻止 - 显示混合内容。
但是当我通过浏览器 URL 访问时,内容正在显示。
角码是:
$http.post('http://crms.ttteamthoi.in/get_timespent_br', {
'from': '01/11/2015',
'to': '25/11/2015'
}, {
"headers": {
"Content-Type": "application/json; charset=UTF-8"
}
})
.then(function(response) {
//code here
}
显示的控制台错误是:
混合内容:“ https://dash-thaidash.c9users.io/#/app/tonnage ”页面通过 HTTPS 加载,但请求了不安全的 XMLHttpRequest 端点“ http://crms.ttteamthoi.in/get_timespent_br ”。此请求已被阻止;内容必须通过 HTTPS 提供。
这是角度特定的吗?