我正在将我的表单数据放入一个数组中
var fields = $(this).serializeArray();
在进行 ajax 调用以在 php 中处理此数组之前,我想将动态令牌值推送到此数组。
我尝试
fields.push({token:value});
我对 php 的 ajax 调用是
$.ajax({
type : 'POST',
url : "test.php",
data : fields,
dataType : 'json',
success: function(data) {......},
error{....}
});
在我的 test.php 页面中,我想使用该令牌值,例如
$token = $_POST[token];
但 $token 值为空。