JSON 转义字符

发布于 2024-11-29 03:02:22 字数 790 浏览 0 评论 0原文

我有一个字符串提前终止,因为“&q”(我猜测)在原始字符串中被转义。如果我想保留 PHP 中的原始字符串,应该如何处理?

的原始字符串结果

'http://answers.onstartups.com/search?tab=active&q=fbi'

var_dump

'["http://answers.onstartups.com/search?tab=active'

JS

var linksStr = $("#links").val();
var matches = JSON.stringify(linksStr.match(/\bhttps?:\/\/[^\s]+/gi));

    $.ajax({
      type: 'GET',
      dataType: 'json',
      cache: false,
      data: 'matches=' + matches,
      url: 'publishlinks/check_links',
      success:                    
        function(response) {
        alert(response);

        }
    })    

check_links

$urls = $this->input->get('matches');        
var_dump($urls);

I have a string that terminates prematurely because of '&q' (I'm guessing) being escaped in the original string. How should I handle this if I want to retain the original string in PHP?

Original string

'http://answers.onstartups.com/search?tab=active&q=fbi'

Result of var_dump

'["http://answers.onstartups.com/search?tab=active'

JS

var linksStr = $("#links").val();
var matches = JSON.stringify(linksStr.match(/\bhttps?:\/\/[^\s]+/gi));

    $.ajax({
      type: 'GET',
      dataType: 'json',
      cache: false,
      data: 'matches=' + matches,
      url: 'publishlinks/check_links',
      success:                    
        function(response) {
        alert(response);

        }
    })    

check_links

$urls = $this->input->get('matches');        
var_dump($urls);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

稳稳的幸福 2024-12-06 03:02:22

您可以对 JSON 字符串进行编码:

    data: 'matches=' + encodeURIComponent(matches),

您也可以这样写:

    data: { matches: matches }

然后 jQuery 应该为您执行编码步骤。

You can encode the JSON string:

    data: 'matches=' + encodeURIComponent(matches),

You could also write it like:

    data: { matches: matches }

and then jQuery should do the encode step for you.

っ左 2024-12-06 03:02:22

从 jQuery .val() 返回的网址是:

'http://answers.onstartups.com/search?tab=active&q=fbi'

.match() 正则表达式将返回一个数组:

new Array("http://answers.onstartups.com/search?tab=active&q=fbi")

JSON.stringify() 正确输出为:

["http://answers.onstartups.com/search?tab=active&q=fbi"]

但是,如果您将其附加为 raw 这里的 GET 参数:

 data: 'matches=' + matches,

那么 URL 中转义的 & 将终止 GET 值。使用 encodeURIComponent

Your url as returned from jQuery .val() is:

'http://answers.onstartups.com/search?tab=active&q=fbi'

The .match() regex will return an array:

new Array("http://answers.onstartups.com/search?tab=active&q=fbi")

Which JSON.stringify() correctly outputs as:

["http://answers.onstartups.com/search?tab=active&q=fbi"]

However if you attach it as raw GET parameter here:

 data: 'matches=' + matches,

Then the enescaped & in the URL will terminate the GET value. Use encodeURIComponent

留蓝 2024-12-06 03:02:22

data: 'matches=' + matches, 更改

为:data: {"matches": matches},

这样 jQuery 就会为你计算出编码。否则,您必须使用 encodeURIComponent() 对 uri 进行编码

Change data: 'matches=' + matches,

To: data: {"matches": matches},.

So that jQuery will figure out the encoding for you. Otherwise you'll have to encode the uri using encodeURIComponent()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文