0

どこかに単純なバグがあると思いますが、見えません! 私の見解では、フォームを作成するための次の JavaScript があります。

  $.ajax({
    url:"<?php echo site_url('mycontroller/methodX/'.$ip.'/'.$hardwaremodel);?>",
    type:'POST',
    dataType:'json',
    success: function(returnDataFromController) {
    var htmlstring;
    var submitFormHTML;
    htmlstring = "<br><br><B>To reassign the port to a new vlan, click on a VlanId below and then click on the OK button</B><br><table class='table table-bordered table-striped'>";
    htmlstring = htmlstring + "<th>VlanId</th><th>Name</th>";
    for(i = 0; i < returnDataFromController.length; i++) {

    }
    submitFormHTML = "<form method='post' accept-charset='utf-8' action='/myapp/index.php/controllerABC/methodABC/"+ $('#ip').val() +"/" + $('#hardwaremodel').val() +"/" + $('#port').val() + "'><input type='text' id='newVlanID' style='width:5em;height:1.5em'/>&nbsp;&nbsp;<button type='submit' class='btn' id='saveVlan' style='width:10em;height:2em'>Reassign Vlan</button></form>";
    //alert(submitFormHTML);
    $('#clientajaxcontainer').html(htmlstring);
    $('#newvlanform').html(submitFormHTML);

フォームを構築するのは「submitFormHTML」文字列です。

そして、コントローラーには、入力をチェックする次のロジックがあります。 public function methodABC() {

     if($_POST){
         echo 'I am here';
         $form = $this->input->post();
         var_dump($form);
         exit();
     }
     else {
         echo "false";
     }

常に「false」を出力します。私も使ってみました:

print_r($this->input->post());

    echo $this->input->post('newID');

しかし、ビューからコントローラーにデータを取得できないようです。私が間違っているところがわかりますか?助けてくれてありがとう。

編集:

ページがレンダリングされると、フォーム用に次の HTML が作成されます。

<form method="post" action="/myapp/index.php/switches/changeportvlan/11.11.11.11 /">
<input type='text' id='newVlanID' style='width:5em;height:1.5em'/>&nbsp;&nbsp;
<button type="submit" class='btn' id='saveVlan' style='width:10em;height:2em'>Reassign Vlan</button>
</form>"
4

2 に答える 2

3

問題は、テキストボックスに「名前」属性がないことでした。「id」だけじゃ足りない!

于 2012-09-06T20:18:38.077 に答える
0

あなたが必要です

if ($this->input->post(Null, False)) {
   echo "I am here";
   $form = $this->input->post(Null, True); ## True for XSS-cleaning, which you probably want.
   exit();
}
else {
   echo "False";
}

あなたは$this->input->post()議論をしなければなりません。さらに、$_POSTCodeIgniterでは絶対に使用しないでください。

幸運を

于 2012-09-06T17:08:08.087 に答える