有人知道我在哪里可以同时托管laravel(php)+mysql应用程序和js(react)应用程序吗?我在从后端端点获取数据时遇到了一些问题。我在github和heroku上找到了我的应用程序。我的后端服务器在另一台主机上。当我尝试使用fetch api获取内容时:
fetch("https://pw-inz.cba.pl/inz_be/public/api/articles", {method: 'GET'}).then(response => { return response.json(); }).then(data => { return data; }).catch(err => { throw new Error(err); });
我有个错误:
The page at 'https://rmdv2.herokuapp.com/' was loaded over HTTPS, but requested an insecure resource 'http://pw-inz.cba.pl/inz_be/public/api/articles'. This request has been blocked; the content must be served over HTTPS.
我想。。好 啊。。似乎很容易修复,将http更改为https,然后:
net::ERR_CERT_COMMON_NAME_INVALID
怎么了?我应该如何主持我的后端,让它与我的前端应用程序的工作?
暂无答案!
目前还没有任何答案,快来回答吧!