gpt4 book ai didi

javascript - XMLHttpRequest url 包含 (&)

转载 作者:行者123 更新时间:2023-11-30 14:24:58 25 4
gpt4 key购买 nike

所以我有这段代码可以将数据发送到后端

var $word = "minds & brains";

var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
console.log(xhttp.responseText);
}

xhttp.open("GET", 'http://mywebsite.com/controller/sample_controller?keyword='+$word, true);
xhttp.send();

但在我的 php 上它只会引起注意

<?php

echo $_GET['keyword'];

任何想法,帮助如何准确地获得“头脑和大脑”这个词?

最佳答案

您需要使用 encodeURIComponent转义 & 字符:

xhttp.open("GET", 'http://mywebsite.com/controller/sample_controller?keyword='+ encodeURIComponent($word), true);

关于javascript - XMLHttpRequest url 包含 (&),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52090080/

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