Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的代码指定
this._restUrl = "http://" + this._info.host + "/app/rest/";
问题是我不知道在使用 SSL 时如何让它使用“https://”。如何将其转换为 http 或 https 语句?这适用于 http,因为它是。
您可以使用相对协议:
this._restUrl = "//" + this._info.host + "/app/rest/";
这是对这些的一个很好的描述。