Angularjs 使用单独参数进行URI解码

Angularjs 使用单独参数进行URI解码,angularjs,Angularjs,如何分别解码URI和显示参数 检查附加图像。 非常感谢您提供任何参考。您知道参数的名称吗?那你就可以这么做了 您要解码的url是当前访问的站点还是用户在某个文本框中写入的url 那么这就是您的解决方案: 请注意,查询变量不应按window.location填充,而应按输入值填充。您知道参数的名称吗?那你就可以这么做了 // Prints complete URL document.write(window.location.href); // Prints protocol like htt

如何分别解码URI和显示参数

检查附加图像。
非常感谢您提供任何参考。

您知道参数的名称吗?那你就可以这么做了

您要解码的url是当前访问的站点还是用户在某个文本框中写入的url

那么这就是您的解决方案:
请注意,查询变量不应按window.location填充,而应按输入值填充。您知道参数的名称吗?那你就可以这么做了

// Prints complete URL
document.write(window.location.href);

// Prints protocol like http: or https:
document.write(window.location.protocol); 

// Prints hostname with port like localhost or localhost:3000
document.write(window.location.host);

// Prints hostname like localhost or www.example.com
document.write(window.location.hostname);

// Prints port number like 3000
document.write(window.location.port);

// Prints pathname like /products/search.php
document.write(window.location.pathname); 

// Prints query string like ?q=ipad
document.write(window.location.search);

// Prints fragment identifier like #featured
document.write(window.location.hash);

您要解码的url是当前访问的站点还是用户在某个文本框中写入的url

那么这就是您的解决方案: 请注意,查询变量不应按window.location填充,而应按输入值填充

// Prints complete URL
document.write(window.location.href);

// Prints protocol like http: or https:
document.write(window.location.protocol); 

// Prints hostname with port like localhost or localhost:3000
document.write(window.location.host);

// Prints hostname like localhost or www.example.com
document.write(window.location.hostname);

// Prints port number like 3000
document.write(window.location.port);

// Prints pathname like /products/search.php
document.write(window.location.pathname); 

// Prints query string like ?q=ipad
document.write(window.location.search);

// Prints fragment identifier like #featured
document.write(window.location.hash);
资料来源:

来源:

just
console.log(window.location)
duplicate just
console.log(window.location)
duplicate