在react中如何使用decodeURL()函数啊?

我想问一下,怎么在react中使用decodeURL()函数?

我在react中写了这么一个函数来接受url传递过来的参数,然后想把它解码为汉字,但我使用了decodeURL()之后说

function GetRequest() {

       var url = decodeURL(window.location.search); //获取url中"?"符后的字串

       var theRequest = new Object();

       if (url.indexOf("?") != -1) {

          var str = url.substr(1);

          var strs = str.split("&");

          for(var i = 0; i < strs.length; i ++) {

             theRequest[strs[i].split("=")[0]]=(strs[i].split("=")[1]);

          }

       }

       console.log(theRequest.name)

       return theRequest;

     }

    const Request = GetRequest();

结果是这样的:http://img.mukewang.com/585cb0c30001895810291056.jpg

慕码人1183263
浏览 4533回答 1
1回答

Caballarii

window.decodeURL
打开App,查看更多内容
随时随地看视频慕课网APP