ビューを機能させようとしています。私のモデルは:
class LocalClock extends AppModel
{
public $useDbConfig = 'default';
public $useTable = 'local_clocks';
//public $useTable = false;
public function setStatType( $type )
{
//$this->table = 'local_clocks';
$this->_schema = array(
'col1' => array('type' => 'int')
,'col2' => array('type' => 'string')
,'col3' => array('type' => 'string')
,'col4' => array('type' => 'string')
,'col5' => array('type' => 'string')
,'col6' => array('type' => 'string')
,'col7' => array('type' => 'string')
,'col8' => array('type' => 'string')
,'col9' => array('type' => 'string')
,'col10' => array('type' => 'string')
,'col11' => array('type' => 'string')
,'col12' => array('type' => 'string')
,'col13' => array('type' => 'string')
,'col14' => array('type' => 'string')
);
}
}
コントローラはこれです:
class LocalClocksController extends AppController
{
public $scaffold = 'admin'; // allow basic view/edit for administrators
public $components = array('RequestHandler'); // enable checking for incoming request attributes
public $helpers = array('Html', 'Form');
public function index()
{
if ($this->RequestHandler->accepts('xml'))
{
$this->LocalClock->table = 'local_clocks';
$this->LocalClock->getDataSource()->tableFields['local_clocks'] = array( "id", "name", "auto_offset", "utc_offset_sec", "in_month", "in_week", "in_day", "in_hour", "out_month", "out_week", "out_day", "out_hour", "offset_sec");
// xml handler
$this->set('localClocks', $this->LocalClock->find('all'));
$this->set('_serialize', array('local_clocks'));
}
elseif ($this->RequestHandler->accepts('json'))
{
$this->LocalClock->getDataSource()->tableFields['local_clocks'] = array( "id", "name", "auto_offset", "utc_offset_sec", "in_month", "in_week", "in_day", "in_hour", "out_month", "out_week", "out_day", "out_hour", "offset_sec");
$this->set('localClocks', $this->LocalClock->find('all'));
$this->set('_serialize', array('local_clocks'));
}
elseif( $this->RequestHandler->accepts('html'))
{
$this->LocalClock->table = 'local_clocks';
$this->LocalClock->getDataSource()->tableFields['local_clocks'] = array( "id", "name", "auto_offset", "utc_offset_sec", "in_month", "in_week", "in_day", "in_hour", "out_month", "out_week", "out_day", "out_hour", "offset_sec");
$this->set('localClocks', $this->LocalClock->find('all'));
}
}
}
そしてこれは見解です:
<p><marquee><u>Local Clocks</u></marquee></p>
<table>
<thead><tr>
<th>Id</th>
<th>Name</th>
<th>Auto Offset</th>
<th>UTC Offset Sec</th>
<th>In Month</th>
<th>In Week</th>
<th>In Day</th>
<th>In Hour</th>
<th>Out Month</th>
<th>Out Week</th>
<th>Out Day</th>
<th>Out Hour</th>
<th>Offset Sec</th>
<th>Actions</th>
</tr></thead>
<tbody>
<?php
foreach($localClocks as $LocalClock) { ?>
<tr>
<td><?php echo $LocalClock['id']; ?></td>
<td><input type="button" value="View"/><input type="button" value="Edit"/><input type="button" value="Delete"/></td>
</tr>
<?php } ?>
</tbody>
</table>
<?php debug($LocalClock); ?>
「通知(8):未定義のインデックス:id [APP / View / LocalClocks / index.ctp、行37]」エラーが発生します
これは、debug($ LocalClock)(ビューファイルのforeachループからのLocalClock)の出力です。
array(
'LocalClock' => array(
'id' => '4',
'name' => 'New Test Clock',
'auto_offset' => false,
'utc_offset_sec' => '9',
'in_month' => '8',
'in_week' => '7',
'in_day' => '6',
'in_hour' => '5',
'out_month' => '4',
'out_week' => '3',
'out_day' => '2',
'out_hour' => '1',
'offset_sec' => '0'
)
)
IDを正しく表示する方法についてのヘルプは素晴らしいでしょう。auto-offset、utc_offset_sec、in_monthなどの他のプロパティも表示しようとしていますが、簡単にするためにこれらをビューファイルから除外しました。
また、上部のモデルファイルで、関数setStateType($ type)が本当に必要ですか?また、関数が必要な場合は、$ this-> _ schema = array()コードについてはどうでしょうか。それも必要ですか。
私はcakephpを使用していますが、これは初めてです。また、私が持っているコードは、私が取り組んでいる同じ大きなプロジェクトの別のセクションからのものです。
ありがとう