'我有 JavaScript 关联数组名称'选项'
<script>
options[dynamickey] = Number;
</script>
我只想使用jQuery post将此数组发送到codeigniter模型
<script>
$.('link',options);
</script>
但问题是我不知道如何提取这个数组的每个键和值(选项)。我的带有数据的 JavaScript 数组看起来像这样
<script>
options {
id => 135,
'Chestnut' => 11,
'Cinamon' => 1
}
</script>
在codeigniter(PHP)模型中我只想像这样提取这个数组
<?php
$id = $this->input->post('id');
//below variable names and data should be dynamic from that javascript array
$chesnut= $this->input->post('dynamic value');
?>
请帮我解决这个问题。