我需要将 JSON 数据发送到 MySQL 数据库,但是当我尝试执行此操作时,我的代码仅将 "{"0":"A" 发送到 MySQL 数据库。这是我的代码:JavaScript<span id="start_button_container">Send and start</span>const allCards = { '0':'A ♦','1':'A ♥','2':'A ♣','3':'A ♠', '4':'10 ♦','5':'10 ♥','6':'10 ♣','7':'10 ♠', '8':'K ♦','9':'K ♥','10':'K ♣','11':'K ♠', '12':'Q ♦','13':'Q ♥','14':'Q ♣','15':'Q ♠', '16':'J ♦','17':'J ♥','18':'J ♣','19':'J ♠'};let userInTable = localStorage.getItem( 'saved_user' );if (userInTable) { // Save user and find table onclick START saveUser.style.display = 'none'; hello.textContent = "Hi " + userInTable; start.onclick = () => { if (userInTable) { let x = new XMLHttpRequest(); let url = "php/findtable.php"; let data = JSON.stringify(allCards); let params = "cards="+data+"&user="+userInTable; x.open("POST", url); x.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); x.send(params); x.onreadystatechange = () => { if (x.readyState == 4 && x.status == 200) { console.log(x.responseText); } } } }}这是我的 PHP 代码:if (isset($_POST["cards"],$_POST["user"])) { $cards = $_POST["cards"]; $user = $_POST["user"]; $query = "INSERT INTO tables (u_1,all_cards) VALUES (?,?)"; if ($stmt = $conn->prepare($query)) { $stmt->bind_param("ss", $user, $cards); if ($stmt->execute()) { print_r($cards); } }}我究竟做错了什么?
2 回答
慕沐林林
TA贡献2016条经验 获得超9个赞
encodeURIComponent() 函数对我帮助很大:
let data = JSON.stringify(encodeURIComponent(allCards));
MM们
TA贡献1886条经验 获得超2个赞
如果您/某人仍然想知道为什么会发生这种情况,则每个与号 (&) 都是查询字符串中的新输入。意思是var1=value&var2=value&var3=value
。您的 JSON 包含&符号,因此解析器认为您正在开始一个新变量。
var1=value&var2={"a":"&2934;"} ^ This one starts a new variable
var2 包含{"a":"1
并2934;"}
作为新变量名进行处理。
encodeURIComponent
对 & 符号进行转义,因此查询字符串解析器不会使用它来进行变量划分。
- 2 回答
- 0 关注
- 102 浏览
添加回答
举报
0/150
提交
取消