<legend id='iEIht'><style id='iEIht'><dir id='iEIht'><q id='iEIht'></q></dir></style></legend>

      <small id='iEIht'></small><noframes id='iEIht'>

      <i id='iEIht'><tr id='iEIht'><dt id='iEIht'><q id='iEIht'><span id='iEIht'><b id='iEIht'><form id='iEIht'><ins id='iEIht'></ins><ul id='iEIht'></ul><sub id='iEIht'></sub></form><legend id='iEIht'></legend><bdo id='iEIht'><pre id='iEIht'><center id='iEIht'></center></pre></bdo></b><th id='iEIht'></th></span></q></dt></tr></i><div id='iEIht'><tfoot id='iEIht'></tfoot><dl id='iEIht'><fieldset id='iEIht'></fieldset></dl></div>
        <bdo id='iEIht'></bdo><ul id='iEIht'></ul>
    1. <tfoot id='iEIht'></tfoot>
    2. 如何从codeigniter的视图中调用控制器功能?

      时间:2023-10-11
    3. <tfoot id='xw3bZ'></tfoot>

        <tbody id='xw3bZ'></tbody>
        <i id='xw3bZ'><tr id='xw3bZ'><dt id='xw3bZ'><q id='xw3bZ'><span id='xw3bZ'><b id='xw3bZ'><form id='xw3bZ'><ins id='xw3bZ'></ins><ul id='xw3bZ'></ul><sub id='xw3bZ'></sub></form><legend id='xw3bZ'></legend><bdo id='xw3bZ'><pre id='xw3bZ'><center id='xw3bZ'></center></pre></bdo></b><th id='xw3bZ'></th></span></q></dt></tr></i><div id='xw3bZ'><tfoot id='xw3bZ'></tfoot><dl id='xw3bZ'><fieldset id='xw3bZ'></fieldset></dl></div>

          <small id='xw3bZ'></small><noframes id='xw3bZ'>

            <bdo id='xw3bZ'></bdo><ul id='xw3bZ'></ul>

              1. <legend id='xw3bZ'><style id='xw3bZ'><dir id='xw3bZ'><q id='xw3bZ'></q></dir></style></legend>
                本文介绍了如何从codeigniter的视图中调用控制器功能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                使用 codeigniter,我有一个控制器,如下所示:

                With codeigniter, I have a controller as in the following:

                <?php if(!defined ('BASEPATH')) exit('not found basepath');
                
                class **myController** extends CI_Controller{
                
                    function __constructor(){
                        parent::__constructor();
                    }
                    public function index(){
                        $this->load->view('myview');
                    }
                    **public function myFn()**{
                        echo "my controller is called"; 
                    }
                }
                
                ?>
                

                查看如下:

                <form action="<?php echo base_url();?>myController/myFn" method="post" name="myform">
                <input type="submit" name="submit" value="submit"/>
                </form>
                

                问题是,当我通过点击提交后转到本地主机运行视图时,提示以下错误!

                the problem is that when I run the view by going to localhost after clicking at the submit m intimating by the following error!

                在此服务器上找不到请求的 URL/CodeIgniter/myController/myFn.

                The requested URL /CodeIgniter/myController/myFn was not found on this server.

                但是当我输入 **http://localhost/CodeIgniter/index.php/myController/myFn** 时,我得到了正确的视图输出

                but when I put **http://localhost/CodeIgniter/index.php/myController/myFn** I got the correct output of the view

                推荐答案

                在你的控制器中删除**".

                In your controller just delete ' ** '.

                <?php if(!defined ('BASEPATH')) exit('not found basepath');
                
                class myController extends CI_Controller{
                
                    function __constructor(){
                        parent::__constructor();
                    }
                
                    public function index(){
                        $this->load->view('myview');
                    }
                
                    public function myFn(){
                    echo "my controller is called"; 
                    }
                }
                ?>
                

                在您看来尝试:

                <?php echo form_open('myController/myFn'); ?>
                <?php echo form_submit('submit','SUBMIT'); ?>
                

                这篇关于如何从codeigniter的视图中调用控制器功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:覆盖 Magento 社区模块控制器的问题 下一篇:如何覆盖 Magento 控制器?

                相关文章

              2. <i id='2RzuT'><tr id='2RzuT'><dt id='2RzuT'><q id='2RzuT'><span id='2RzuT'><b id='2RzuT'><form id='2RzuT'><ins id='2RzuT'></ins><ul id='2RzuT'></ul><sub id='2RzuT'></sub></form><legend id='2RzuT'></legend><bdo id='2RzuT'><pre id='2RzuT'><center id='2RzuT'></center></pre></bdo></b><th id='2RzuT'></th></span></q></dt></tr></i><div id='2RzuT'><tfoot id='2RzuT'></tfoot><dl id='2RzuT'><fieldset id='2RzuT'></fieldset></dl></div>
              3. <legend id='2RzuT'><style id='2RzuT'><dir id='2RzuT'><q id='2RzuT'></q></dir></style></legend>

                  1. <small id='2RzuT'></small><noframes id='2RzuT'>

                      <bdo id='2RzuT'></bdo><ul id='2RzuT'></ul>

                  2. <tfoot id='2RzuT'></tfoot>