2

对不起这个重复和重复的问题,但我真的不知道如何解决。

有一个按钮和两个 text_input ,当我单击此按钮时,如果它起作用,我会看到一个警报并向我显示“成功”,但不幸的是,我什么也看不到。

没有什么 !!

我不知道为什么:(

请帮助我,拜托......我在stackoverflow或其他网站上阅读了很多关于codeigniter的教程,但我没有找到任何可以解决我的问题的方法,请教我。

下面是一个非常简单的表格

文件名:test.php

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>test </title>
    <link rel="stylesheet" href="<?=base_url("/css/bootstrap.css")?>">
    <link rel="stylesheet" href="<?=base_url("/css/basic.css")?>">
    <script src="<?=base_url("/js/jquery-1.10.2.min.js")?>"></script>
    <script src="<?=base_url("/js/bootstrap.js")?>"></script>
    <script src="<?=base_url("/js/practice.js")?>"></script>
</head>
<body>

<div style="margin:19px">
    <form id="test_form" method="post">
    USER:<input id="num" name="num" type="text" ><br> 
    NAME:<input id="name" name="name" type="text" ><br>
    <input id="submit" name="submit" class="btn" type="submit" value="save"> 
    </form>
</div>
</body>
</html>

我想通过 jQuery Ajax() 以这种形式提交数据,JS文件在下面

文件名:练习.js

$(document).ready(function(){
    $("#test_form").submit(function(e){     
        e.preventDefault();

        var tdata= $("#test_form").serializeArray();

        $.ajax({
            type: "POST",
            url: "http://localhost/index.php/static_data/test_add",
            dataType: json, 
            data: tdata, 

            success:function(tdata)
            {
                alert('SUCCESS!!');
            }
        });
    });
});

下面是我的控制器

文件名:static_data

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class Static_data extends CI_Controller {

  public function test()
  {
    $this->load->view('test');      
  }

  public function test_add()
  {
    $this->load->model("paper");
    $this->paper->test_add();
  }
}

下面这个文件是我的模型集

文件名:paper.php

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');  
class Paper extends CI_Model {  

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

  function test_add()
  {  
    $this->load->helper('form');
    $this->load->helper('html');
    $this->load->database();
    $tdata = array(
      'num' =>  $this->input->post('num'),
      'name' =>  $this->input->post('name'),
    );
    $this->db->insert('test_table',$tdata);  
  }      
}  
4

3 回答 3

3

试试这个 -> 在你的test.php文件中,将 action 属性指定为

action="<?php echo site_url();?>/static_data/test_add"

然后,在您的 practice.js 文件中:

$('#test_form').submit(function() {
var tdata= $("#test_form").serializeArray();
var that = $(this),
url = that.attr('action'),
type = that.attr('method'),
data = tdata;

现在,为了测试,在您的success函数中practice.js,只需编写以下内容:

success: function(response) {
         console.log(response);
}

在这里,您得到的响应是您的控制器返回给您的内容,现在来测试一下,只需键入 echo "hello";或任何内容,只需回显某些内容。(这是因为你说教我:))

现在看看这是否有效,打开开发者工具(如果你在谷歌浏览器中),转到控制台选项卡,然后从底部选择日志,如果一切正常,它将返回你写在控制器中的回显消息。

另外,要查看表单是否正确提交,请选择网络选项卡,当您点击提交按钮时,网络选项卡将显示数据是否已正确提交。

试试这个,如果不起作用,请发表评论。

于 2013-11-10T11:31:36.177 回答
1

I think you can easily solve this problem by this simple ajax request given below:

$(document).ready(function(){

    $("#test_form").on("submit", function(event){
         event.preventDefault();
         $.ajax({
              url : base_url+"static_data/test_add",
              type : "post",
              data : $("#test_form").serialize(),
              dataType : "json",
              success(data)
              {
                  alert('SUCCESS!!');
              } 
         });
    });

});

Before doing that, in your view file (test.php) on the head setion please write this

<script>
    var base_url = "<?php echo base_url(); ?>";
</script>
于 2014-02-23T11:40:22.127 回答
0

尝试这个 :

练习.js

$(document).ready(function(){

    $("#test_form").submit(function(e){     
        e.preventDefault();

        var tdata= $("#test_form").serializeArray();

        $.ajax({
            type: "POST",
            url: 'http://localhost/[CodeIgniterDirectory]/index.php/static_data/test_add',
            data: tdata, 

            success:function(tdata)
            {
                alert('SUCCESS!!');
            },
            error: function (XHR, status, response) {
               alert('fail');
            }

        });
    });
});
于 2013-11-10T16:07:16.417 回答