所以我使用下面的代码来发送一个ajax请求
$.ajax({
type: 'POST',
url: base_url + "/notifications/send_notification",
dataType: 'json',
data: {
action: 'action_complete',
entity_id: 31
}
});
这段代码在我的本地机器上运行良好,但是当我将它上传到我们的服务器(现在有 SSL 设置),并尝试通过 https 而不是 http 进行时,它会出现“500 Internal Server Error”。
Ps“base_url”变量确实包含“https”url。
编辑:这是 Chrome 中 Network > Header 选项卡的屏幕截图: