我指的是这段代码:
var url_string = "http://www.example.com/t.html?a=1&b=3&c=m2-m3-m4-m5"; //window.location.href
var url = new URL(url_string);
var c = url.searchParams.get("c");
console.log(c);
我得到 c 值,但是当我将网址更改为
时http://172.16.1.135:458/EMS/Index.html#/Login?c=John&securityToken=3D5813AB-6E83-43D9-8B1F-277548D874D1|13|1548340074273
我没有得到 c
的价值答案 0 :(得分:0)
如果您不想为其使用任何路由模块,请使用$location
服务:
console.log($location.search());
当然记得要注入$location
服务