3

コードイグナイターでフォーム検証が機能していないようです。何が問題なのかわかりません!

これが私のコントローラークラスです:

class registerController extends MY_Controller {

    // --- Methods -----------------

    function __construct()
    {
        parent::__construct();

        $this->firephp->log('REGISTER PAGE CONTROLLER ACTIVE');

        //Load user model
        $this->load->model('usersModel');

        //load form validation
        $this->load->helper('form');
        $this->load->library('form_validation');

    }

    //------------------------------

    public function register()
    {

        $this->form_validation->set_rules('registerForenameFieldName', 'Fist Name', 'required');

        //This is executed when the form is submitted
        if ($this->form_validation->run() == FALSE)
        {

            $this->firephp->log('Registration form validation failed');

            //Load in the views
            $this->load->view('global/head.php');
            $this->load->view('global/top.php');
            $this->load->view('register/register.php');
            $this->load->view('global/footer.php');

        } else {

            $this->firephp->log('Registration form validation succeeded');

            //Model method here

            //Load in the views
            $this->load->view('global/head.php');
            $this->load->view('global/top.php');
            $this->load->view('home.php');
            $this->load->view('global/footer.php');
        }

    }

}

そして私のフォーム:

<?php  echo form_open('register'); ?>

    <div id="registerErrors"><?php echo validation_errors(); ?></div>

        <table id="registerTable">

            <tr>
            <td class="regLeftCell"><p>First Name</p></td>
            <td class="regRightCell">
            <input id="registerForenameField" class="textField registerField" name="registerForenameFieldName" type="text" placeholder="Forename" value="<?php echo set_value('registerForenameFieldName'); ?>"></input>
            </td>
            </tr>

            <tr>
            <td class="regLeftCell"><p>Last Name</p></td>
            <td class="regRightCell">
            <input id="registerSurnameField" class="textField registerField" name="registerSurnameFieldName" type="text" placeholder="Surname" value="<?php echo set_value('registerSurnameFieldName'); ?>"></input>
            </td>
            </tr>

            <tr>
            <td class="regLeftCell"><p>Email Address</p></td>
            <td class="regRightCell">
            <input id="registerEmailField" class="textField registerField" name="registerEmailFieldName" type="text" placeholder="Email Address"></input>
            </td>
            </tr>

            <tr>
            <td class="regLeftCell"><p>Choose Password</p></td>
            <td class="regRightCell">
            <input id="registerPasswordField" class="textField registerField" name="registerPasswordFieldName" type="text" placeholder="Password"></input>
            </td>
            </tr>

            <tr>
            <td class="regLeftCell"><p>Confirm Password</p></td>
            <td class="regRightCell">
            <input id="registerConfirmPasswordField" class="textField registerField" name="registerConfirmPasswordFieldName" type="text" placeholder="Confirm Password"></input>
            </td>
            </tr>

            <tr>
            <td class="regLeftCell"><p>Address Line 1</p></td>
            <td class="regRightCell">
            <input id="registerAddress1Field" class="textField registerField" name="registerAddress1FieldName" type="text" placeholder="Address Line 1"></input>
            </td>
            </tr>

            <tr>
            <td class="regLeftCell"><p>Address Line 2</p></td>
            <td class="regRightCell">
            <input id="registerAddress2Field" class="textField registerField" name="registerAddress2FieldName" type="text" placeholder="Address Line 2"></input>
            </td>
            </tr>

            <tr>
            <td class="regLeftCell"><p>Address Line 3</p></td>
            <td class="regRightCell">
            <input id="registerAddress3Field" class="textField registerField" name="registerAddress3FieldName" type="text" placeholder="Address Line 3"></input>
            </td>
            </tr>

            <tr>
            <td class="regLeftCell"><p>Post Code</p></td>
            <td class="regRightCell">
            <input id="registerAddressPostCodeField" class="textField registerField" name="registerPostCodeFieldName" type="text" placeholder="Post Code"></input>
            </td>
            </tr>

            <tr>
            <td class="regLeftCell"><p>Country</p></td>
            <td class="regRightCell">
            <input id="registerAddressCountryField" class="textField registerField" name="registerSurnameFieldName" type="text" placeholder="Country"></input>
            </td>
            </tr>

        </table>

        <div id="registerButton">
            <input class="button registerSubmitButton" type="submit" value="Register"/>
        </div>


    </form>

ルーティングは次のように設定されます。

$route['register'] = 'registerController/register';

どうしたの?エラーを表示せずに毎回失敗します。

検証エラーなしで同じページをリロードするだけです。$this->form_validation->run() は、Firebug 拡張機能である FirePHP でログに記録したため、毎回 FALSE と評価されます。

編集:

ページを読み込んでいるにもかかわらず、コンソールに 404 エラーが表示されることにも言及する価値があるかもしれません。

その他のエラー

4

5 に答える 5

5

私はついに答えを見つけました!サーバーが正しく構成されていませんでした。mod_rewrite が有効になっていないため、要求が正しく機能していませんでした。

Ubuntu ユーザーは、コマンド ラインでこれを起動して有効にします: sudo a2enmod rewrite

次に、Apache を再起動します。

次の .htaccess を使用しています。

<IfModule mod_rewrite.c>

    RewriteEngine On
    RewriteBase /

    #Removes access to the system folder by users.
    #Additionally this will allow you to create a System.php controller,
    #previously this would not have been possible.
    #'system' can be replaced if you have renamed your system folder.
    RewriteCond %{REQUEST_URI} ^system.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #When your application folder isn't in the system folder
    #This snippet prevents user access to the application folder
    #Rename 'application' to your applications folder name.
    RewriteCond %{REQUEST_URI} ^application.*
    RewriteRule ^(.*)$ /index.php?/$1 [L]

    #Checks to see if the user is attempting to access a valid file,
    #such as an image or css document, if this isn't true it sends the
    #request to index.php
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ /index.php?/$1 [L]

</IfModule>

<IfModule !mod_rewrite.c>
    # If we don't have mod_rewrite installed, all 404's
    # can be sent to index.php, and everything works as normal.
    ErrorDocument 404 /index.php
</IfModule>
于 2012-07-16T07:06:53.557 に答える
2

form_open関数でコントローラー名を指定していません。

<?php  echo form_open('registerController/register'); ?>

ドキュメント: フォーム ヘルパー.

于 2012-07-15T16:38:06.600 に答える
0

次の行を __construct に追加します。

$this->load->helper('url');

次にこれを試してください:

echo form_open(site_url("register"));

関数 site_url は、ルーティングされた URL を使用するのに役立つ場合があります。これで何も解決しない場合は、echo base_url(); を試すことができます。およびその他の URL ヘルパー関数を使用して、URL を完成させます。

于 2012-07-16T10:53:08.340 に答える
0
  1. 「毎回失敗する」とはどういう意味ですか? - 空のページを表示しますか? またはエラー?または何?

  2. コンストラクターは実行されていますか?

    function __construct()
    {
        parent::__construct();
        var_dump('contructor');
    }
    
  3. レジスタ関数が呼び出されていますか?

    function register()
    {
        var_dump('register function');
    }
    

または単に追加する

$this->firephp->log('Registration function');

関数の冒頭で、registerデバッグ結果をお知らせください。

ここから例を試しましたか:

http://codeigniter.com/user_guide/libraries/form_validation.html

于 2012-07-15T16:36:09.903 に答える
-1

firebug で変数と配列を印刷するための拡張機能をロードしている理由がわかりません。これを使用しているほとんどのプロジェクトでは、同じです。firephpコアは必要ありません。また、firebug 用の firephp アドオンは必要ありません。

<?php
$debug[] = 'Hello World';
// and/or
$debug[] = array('a1'=>"ArrValue1",'a2'=>"ArrValue2");
?>

<!-- add before </body>... -->
<?php if(isset($debug)): ?>
<script type="text/javascript">
jQuery(document).ready(function(){ 
    <?php foreach($debug as $js): if(is_array($js)) $js= json_encode($js); else $js = '"'.$js.'"'; ?>
    console.log(<?php echo $js; ?>);
    <?php endforeach; ?>
})
</script>
<?php endif; ?>
于 2012-07-16T11:55:17.453 に答える