我目前正在尝试将一个 javascript 数组发送到我的 .php 文件处理程序并将其保存到我的数据库中。
请求成功,但似乎我的数组没有正确发布/保存。在我的 POST 请求源中,它只是显示为:round_items%5B%5D=1
我错过了什么?
id = 5;
var roundChallenges = new Array("item1", "item2", "etc");
//Save the data
var url = path.php;
var request = $.ajax({
type: "POST",
url: url,
dataType: 'json',
data: { uid: id, round_items: roundChallenges },
success: function(data)
{....