javascript - URIError: malformed URI sequence? - Stack Overflow

The below code error's out with URIError: malformed URI sequence? when there is a % sign like 60%

The below code error's out with URIError: malformed URI sequence? when there is a % sign like 60% - Completed in the URL string from where I need to extract the parameter value e.g. %%20-%20Completed

   <SCRIPT type="text/javascript">
            function getParameterByName(name) {
                name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
                var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
                results = regex.exec(location.search);
                return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
            }
    </SCRIPT>

I dont have control of the server and need to process the output in my html page.

The below code error's out with URIError: malformed URI sequence? when there is a % sign like 60% - Completed in the URL string from where I need to extract the parameter value e.g. http://some-external-server./info?progress=60%%20-%20Completed

   <SCRIPT type="text/javascript">
            function getParameterByName(name) {
                name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
                var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
                results = regex.exec(location.search);
                return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
            }
    </SCRIPT>

I dont have control of the server and need to process the output in my html page.

Share Improve this question asked Dec 20, 2013 at 9:33 StackedStacked 8612 gold badges12 silver badges24 bronze badges 2
  • 1 possible duplicate of Javascript decodeURI(Component) malformed uri exception – Christian Commented Jan 14, 2014 at 22:35
  • Possible duplicate of Why does decodeURIComponent('%') lock up my browser? – Michał Perłakowski Commented Dec 29, 2015 at 9:26
Add a ment  | 

1 Answer 1

Reset to default 7

I think you need to URI encode the percentage sign as '%25'

http://some-external-server./info?progress=60%25%20-%20Completed 

[EDIT]

I guess you could do something like this:

var str = "60%%20-%20pleted";
var uri_encoded = str.replace(/%([^\d].)/, "%25$1");
console.log(str); // "60%25%20-%20pleted"
var decoded = decodeURIComponent(uri_encoded);
console.log(decoded); // "60% - pleted"

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743627292a4480752.html

相关推荐

  • javascript - URIError: malformed URI sequence? - Stack Overflow

    The below code error's out with URIError: malformed URI sequence? when there is a % sign like 60%

    19小时前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信