赞
踩
在日常开发过程中,我们有时候对某些应用功能进行封装,但是在请求接口又不能写死,这个时候我们需要对他进行多方面考虑。
方法一:
- function getBaseUrl (string) {
- let url;
- try {
- url = new URL(string);
- } catch (_) {
- return false;
- }
- return url.protocol === "https:";
- }
-
-
- // getBaseUrl ("<https://baidu.com>"); // true
- // getBaseUrl ("<http://baidu.com>"); // false
方法二:
- function getBaseUrl () {
- var ishttps = 'https:' == document.location.protocol ? true: false;
- return ishttps ;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。