我在一小时前进行了这项工作,但一定有所更改。
我应该如何使用ZendX调用ajaxLink,以便响应html中的任何JavaScript都得到执行?我尝试使用processData,因为我认为我曾经用过,但是现在不起作用。

<?php echo $this->ajaxLink('Click me and I will run the returned javascript code',
                    $this->url(array('controller' => 'foo', 'action' => 'bar')),
                    array('id' => 'myid'),
                                'processData' => true,
                                'method' => 'post',
                                'async' => false
                    ),
                    array('a_posted_id' => $the_posted_id));?>

最佳答案

这项工作应该可行,并且可能只是ajaxLink()代码中某个地方的错误。我最终返回了JSON编码的数据,并使用javascript函数来对返回的数据进行操作。

09-27 04:21