我正在发出 AJAX 请求,我需要发送一个完整的 PHP 对象。这是我的 JS 代码:
new Ajax.Request("some url",
{
method: 'post',
parameters: {
string1:"whatever",
myobject: this is where I want to send a PHP object named $product
}
...
});
最好的方法是什么?也许使用序列化?
谢谢你的帮助 :)!