gpt4 book ai didi

javascript encodeURIComponent 并将空格转换为 + 符号

转载 作者:可可西里 更新时间:2023-11-01 01:21:44 26 4
gpt4 key购买 nike

我想对我的 URL 进行编码,但我想将空格转换为加号。

这就是我试图做的......

var search = "Testing this here &";

encodeURIComponent(search.replace(/ /gi,"+"));

输出是 Testing%2Bthis%2Bhere%2B%26 但我希望它是 Testing+this+here+%26 我尝试替换%20 的空格将其转换为加号,但这似乎不起作用。谁能告诉我我在这里做错了什么?

最佳答案

encodeURIComponent(search).replace(/%20/g, "+");

您在这里做错的是首先您将空格转换为加号,然后 encodeURIComponent 将加号转换为 "%2B" .

关于javascript encodeURIComponent 并将空格转换为 + 符号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10857590/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com