• encodeURIComponent() 函数的使用


    说明:encodeURIComponent() 函数可把字符串作为 URI 组件进行编码。

    维护项目中,遇到一个登录的问题:(用户的loginName为33195221,密码为147258369+),在密码正确的情况下登录,显示密码错误。

    于是翻看了代码,看到了登录请求的代码为这样的:

    $("#login").click(function() {
        var userName = $("#userName").val();
        var password = $("#password").val();
                   
        var url = basePath + '/user/user_login.do';
        url = url + '?user.userName=' + userName + '&user.password=' + password;
        $.ajax({
          url : url,
          dataType : 'json',
          type : "post",
           success : function(data) {
              if (data.resultStatus == 'ok') {
                  window.location.href='index.html';
              }else{
                  alert('登录失败');
               }
           },
           error : function() {
               alert("未能连接到服务器!");
           }
      });
    
    });

    访问的url:

    看着没问题,但是传到后台后,明显后面的特殊字符“+”号变成了空格,如下图:

    所以,登录的时候就显示密码错误。

    解决办法:

    像这种url中带有特殊字符的情况下,就用encodeURIComponent() 函数,把要编码的字符串传进去,比如,刚开始的js代码中的url关于密码的那块,可以这样改:

    url = url + '?user.userName=' + userName + '&user.password=' + encodeURIComponent(password);
    这样就不会把传过去的特使字符“+”变为空格了。


    注:encodeURIComponent不编码字符有71个:!, ',(,),*,-,.,_,~,0-9,a-z,A-Z
  • 相关阅读:
    XML实例入门2
    XML入门
    XML实例入门1
    C语言复合梯形公式实现定积分
    一些界面库比较以及如何选择界面库
    网络阅读开篇
    vs2008 edit spin 十六进制实现
    jquery操作cookie
    Excel导入到DataTable
    SQL 查找某个字段的首字母
  • 原文地址:https://www.cnblogs.com/chunyansong/p/7844601.html
Copyright © 2020-2023  润新知