我是CodeIgniter的初学者,想在首页上将我的标签内部链接到产品页面上的ID =“ gainers”的元素。
我在网上尝试了许多资源,CodeIgniter(视图)的文档以及youtube上的视频,但无法获得帮助。我的控制器有此代码。
public function toLoadProductsPageGainers()
{
$this->load->view('vsc_spl_product_from_model#gainers');
}
其中“获得者”是产品页面上细分的ID。
我希望从我的主页调用toLoadProductsPageGainers()的链接指向产品页面上的id =“ gainers”。但是404错误即将到来。
答案 0 :(得分:0)
html代码应为
<a href="<?=site_url("toLoadProductsPageGainers/#gainers")?>">Go To Link</a>
您的控制器应如下所示
public function toLoadProductsPageGainers()
{
$this->load->view('vsc_spl_product_from_model');
}