0

我有一个调用特定 ajax 操作的链接,作为回报,它在屏幕上呈现部分视图,该部分视图始终在 div 内更新。使用它通常可以工作,但是当我使用 CHTML 类来使用如下静态函数时

      <?php echo CHTML::linkButton("Like",array("href"=>"http://www.aa.com","id"=>"link-button-shrinked"))?> 

然后ajax调用不起作用并给出奇怪的错误

      <h1>PHP Error [2]</h1>
      <p>YiiBase::include(CHTML.php) [<a href='yiibase.include'>yiibase.include</a>]: failed to open stream: No such file or directory (C:\AppServ\www\abc.com\framework\YiiBase.php:418)</p>

我的渲染视图功能是这样的

$this->renderPartial('_character_actions',array("actionRecords"=>$actionRecords),false,true);

如果我删除 CHTML 函数调用,那么一切正常......请帮助我。

4

1 回答 1

1

你把类名弄错了。

只需更改CHTMLCHtml,您应该会很好。

于 2012-08-06T23:24:28.453 回答