在我使用ZF的网站上,我收到了一个带有ajax调用的页面。 我想在每次进行新的ajax调用时更改元标记(作者,关键字,描述)。 我将这些setName()方法放在ajax-controller中,但它没有填充元。
$this->headMeta()->setName('description', $description);
$this->headMeta()->setName('keywords', $keys);
$this->headMeta()->setName('author', $author);
有可能吗?怎么回事?