我正在尝试从当前页面获取 url 查询字符串参数,并且我有以下代码:
doInit: function (component, event, helper) {
var urlParams = new URLSearchParams(window.location.search);
console.log("params::: ", urlParams);
if (urlParams.has("openSidebar") && urlParams.get("openSidebar") == true) {
console.log("redirection happening....");
component.set("v.showFeed", true);
component.set("v.isSidebarOpen", true);
}
},
由于某种原因,我似乎无法使用这一行var urlParams = new URLSearchParams(window.location.search); 我不知道为什么。
是否有任何替代或销售人员方式从 url 获取查询字符串参数?
我基本上什么也没得到,执行似乎停止在我使用URLSearchParams的那一行!
也很想知道为什么闪电在这种情况下不让普通的 javascript 执行?