0

CakePhp の最新 (2.1.1) バージョンを使用しています。ajaxHlper( http://www.cakephp.4uk.pl/ ) を実装しようとしていました。しかし、その間に立ち往生。

 <head>
<script type="text/javascript">
     $(document).ready(function(){
            $("#EmployeeAddForm").validate();
     });            

</script>   
</head>

<div class="employees form">
<?php echo $this->Form->create('Employee');?>
<fieldset>
    <legend><?php echo __('Add Employee'); ?></legend>
<?php
    echo $this->Form->input('first_name');
    echo $this->Form->input('last_name');
    //echo $this->Form->input('age');
    echo $this->Form->input('age', array('class' => 'required number'));
    echo $this->Form->input('sex');
    echo $this->Form->input('Adress.first_line');
    echo $this->Form->input('Adress.second_line');
    echo $this->Form->input('Adress.city');
    echo $this->Form->input('Adress.state');
    echo $ajax->autoComplete('Department.name', '/ajax/autoComplete')
?>
</fieldset>
   <?php echo $this->Form->end(__('Submit'));?>
 </div>
   <div class="actions">
<h3><?php echo __('Actions'); ?></h3>
<ul>

    <li><?php echo $this->Html->link(__('List Employees'), array('action' => 'index'));?></li>
    <li><?php echo $this->Html->link(__('List Adresses'), array('controller' => 'adresses', 'action' => 'index')); ?> </li>
    <li><?php echo $this->Html->link(__('New Adress'), array('controller' => 'adresses', 'action' => 'add')); ?> </li>
</ul>

これは、ajaxHelper を使用してオートコンプリートしようとしている Department.name の add.ctp ファイルです。

私の EmployeesController.php には、次のようなオートコンプリート機能があります

 function autoComplete() {
    echo $this->params['url']['q'] . "---";
    $this->loadModel("Department");
    $this->set('departments', $this->Department->find('all', array(
        'conditions' => array(
            'Department.name LIKE ' => '%'.$this->params['url']['q'].'%'
        ),
        'limit' => $this->params['url']['limit'],
        'fields' => array('name')
    )));
    $this->layout = 'ajax';
} 

動いていない。私がしている間違いは何ですか?次のエラーが表示されます。

通知 (8): 未定義の変数: ajax [APP\View\Employees\add.ctp、84 行目] 致命的なエラー: C:\xampplite\htdocs\cakephp\app の非オブジェクトに対するメンバ関数 autoComplete() の呼び出し\View\Employees\add.ctp 行 84

4

1 に答える 1

1

コントローラーの配列にヘルパーを追加したと仮定すると、代わりに$helpersを使用してヘルパーにアクセスする必要があります。$this->Ajax->autoComplete()$ajax->autoComplete()

于 2012-04-09T09:49:23.587 に答える