0
我有一個使用我的saved_news表數據庫用一個模型來讀,另一個保存數據
在我的控制器命名google_news.php
它使用外部數據的模型,而另一個模型saved_news.php
,我宣佈,即時通訊使用此兩種型號:
var $uses = array('GoogleNews', 'SavedNews');
,我的指數函數讀取數據:
$this->set('news',$this->GoogleNews->find('all'));
和我的看法是這樣的:
<?php foreach($news as $newsItem) : ?>
<?php echo $html->link($newsItem['GoogleNews']['title'], array('action'=>'add', $newsItem['GoogleNews']['title'])); ?>
<?php echo $newsItem['GoogleNews']['encoded']; ?>
<em>
<hr>
<?php endforeach; ?>
如何在我的控制器中編寫添加功能以將每個數據保存到我的數據庫?
你的問題似乎令人困惑。你有沒有跑過博客教程呢? – XuDing 2014-01-16 08:17:28