1

これらの関数をコントローラーから呼び出して、フォームとフォームから値を取得しています。私の質問は、送信が失敗した後、フォームに値を保持するにはどうすればよいですか? 私はこのようなことを試しました:

 <input type="text" name="myField1" value="<?php echo isset($_POST['myField1']) ? $_POST['myField1'] : '' ?>" />

しかし、それを機能させることはできません。

private $m_username = 'username';
private $m_password = 'password';
private $m_registerButton = 'registerButton';

public function RegisterUserBox(){
    return
    '<form method="post">
            <fieldset>
                Username: <input type="text" name="'.$this->m_username.'" />
                Password: <input type="password" name="'.$this->m_password.'" />
                <input type="submit" value="Register" name="'.$this->m_registerButton.'"/>
            </fieldset>
     </form>';

}

public function GetUsername(){
    if(isset($_POST[$this->m_username])){
        return $_POST[$this->m_username];
    }
}

public function GetPassword(){
    if (isset($_POST[$this->m_password])){
        return $_POST[$this->m_password];
    }
}

public function TriedToRegister(){
    if (isset($_POST[$this->m_registerButton])){
        return true;
    }
    return false;
}
4

3 に答える 3

1

[edit: run this on localhost]

autocompleteすべてのブラウザーで機能するわけではありません。また、ヒントにすぎないため、残された選択肢は Cookie のみです。以下の解決策は問題なく動作しますが、他のユーザーがこの人気のあるリクエストに対して別の方法で貢献してくれると助かります: Keep value in form after submitting .

<html>
  <head>
    <script>
        function setCookie(c_name, value, exdays) {
            var exdate = new Date();
            exdate.setDate(exdate.getDate() + exdays);
            var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
            document.cookie = c_name + "=" + c_value;
        }

        function getCookie(c_name) {
            var i, x, y, ARRcookies = document.cookie.split(";");
            for (i = 0; i < ARRcookies.length; i++) {
                x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
                y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
                x = x.replace(/^\s+|\s+$/g, "");
                if (x == c_name) {
                    return unescape(y);
                }
            }
        }

        function store() {
            var inputs, index;

            inputs = document.getElementsByTagName('input');
            for (index = 0; index < inputs.length - 1; ++index) {
                setCookie(inputs[index].name,inputs[index].value,1);
            }
            return false;
        }
    </script>
  </head>

  <body>
    <form method="post" action="back.php" onsubmit="store()" >
      firstname<input type="text" name="firstname">
      lastname<input type="text" name="lastname">
      emailid<input type="text" name="emailid">
      <input type="submit" >
    </form>
    <script>
        (function load(){
            var inputs, index;

            inputs = document.getElementsByTagName('input');
            for (index = 0; index < inputs.length - 1; ++index) {
                inputs[index].value = getCookie(inputs[index].name);
            }
            return false;
        })();
    </script>
  </body>
</html>

画像-1 画像-2 画像-3 画像-4

于 2013-01-24T17:30:38.453 に答える
0

$_POSTフォームの前に、データを受け取るオブジェクトをインスタンス化します

$userbox = new Userbox;

次に$_POST、データがある場合は処理します。

if(isset($_POST['submit']) && $_POST['submit'] === 'userboxsubmit'){
  $userbox->process_post(); 
}

次に、フォームを出力します。

<input type="text" name="myField1" value="<?php echo $userbox->myField1; ?>" />
于 2013-01-24T17:44:37.713 に答える
0
<html>
  <body>

    <form method="post" action="back.php" autocomplete="on" >
      <input type="text" autocomplete="on" >
      <input type="submit" >
    </form>

  </body>
</html>
于 2013-01-24T16:23:39.047 に答える