这是我的对象数组
[Object { qe="1-5", result="0"}, Object { qe="1-5", result="1"}, Object { qe="8+9", result="0"}]
我需要将此数组作为 href 链接发送
像这样的东西:
index.php?mode=result&link= 对象
现在我需要知道如何将这种特定类型的数组转换为字符串
我在这里有一个演示,但没有用:
这是我的对象数组
[Object { qe="1-5", result="0"}, Object { qe="1-5", result="1"}, Object { qe="8+9", result="0"}]
我需要将此数组作为 href 链接发送
像这样的东西:
index.php?mode=result&link= 对象
现在我需要知道如何将这种特定类型的数组转换为字符串
我在这里有一个演示,但没有用:
似乎您可以将其作为 JSON 字符串发送。您可以JSON.stringify
在对象上使用:
encodeURIComponent(JSON.stringify(value));
在 php 方面,json_decode($_REQUEST['link'])
将其转换为可用的 PHP 结构(数组、对象)。
尝试以下
var obj= [Object { qe="1-5", result="0"}, Object { qe="1-5", result="1"}, Object { qe="8+9", result="0"}]
alert(JSON.stringify(obj));