如何处理数组作为获取 str 到 url?
我想将一个数组作为 get prometers 发送到我的 PHP 页面,不关心 get str 多长时间,它只在我的站点管理端使用。我应该如何将数组处理成一个字符串,当在 PHP 站点中我可以将它重新处理回数组时。
<script type="text/javascript">
function arr_to_get_str(arr){
// how should I make a get string from an array?
// what format should this str shows
return str;
}
var arr=[
[
key :'products_id',
operator: '>',
value : '20'
],
[
key :'products_name',
operator: 'like',
value : '%hello world%'
]
];
var base_uri='http://localhost/test.php';
var url= base_uri + '?'+ arr_to_get_str(str);
location.href = url;
</script>