如何根据当前URL指定HTTP或HTTPS?

时间:2013-05-08 01:41:08

标签: javascript https

我的代码指定

this._restUrl = "http://" + this._info.host + "/app/rest/"; 

问题是我无法弄清楚如何在使用SSL时使用“https://”。如何将其转换为http或https语句?这适用于http原样。

1 个答案:

答案 0 :(得分:3)

您可以使用相关协议:

this._restUrl = "//" + this._info.host + "/app/rest/";

Here’s a good description of those.