标签: javascript https
我的代码指定
this._restUrl = "http://" + this._info.host + "/app/rest/";
问题是我无法弄清楚如何在使用SSL时使用“https://”。如何将其转换为http或https语句?这适用于http原样。
答案 0 :(得分:3)
您可以使用相关协议:
this._restUrl = "//" + this._info.host + "/app/rest/";
Here’s a good description of those.