我有一个可用的变量列表,我想通过 $.ajax post 发送它。我必须以什么格式保存这些文件才能使用 .serialize 函数?我不断收到此错误:
对象“空白”没有“序列化”方法
我试图让它们成为一个数组,并尝试了 jQuery.param()。我觉得这很简单,但我似乎无法理解。谢谢!
var $data = jQuery.makeArray(attachmentId = attachmentID, action = 'rename', oldName = filename, newName, bucketName, oldFolderName, newFolderName, projectId = PID, businessId = BID);
var serializedData = $data.serializeArray();
//alert(theurl);
$.ajax({ type: "post", url: theurl, data: serializedData, dataType: 'json', success: reCreateTree });