gpt4 book ai didi

php - Codeigniter AJAX 在不刷新的情况下从 MySQL 数据库获取数据的正确方法

转载 作者:可可西里 更新时间:2023-11-01 07:34:53 24 4
gpt4 key购买 nike

我目前正在尝试使用 AJAX 和 jQuery 来完成一些基本任务,而无需离开网页。我的目标是在不刷新页面的情况下查询数据库中的表并将该信息附加到列表中。

 <button class="button radius" id="btnList">Current Items</button>

这是我的按钮,它有 ID。 ("触发按钮");

我的脚本是这样的

$('#btnList').click(function(e){
$.ajax({
url:"<?php echo base_url();?>/cashbook/get_item",
datatype:'json',
type:"POST",
success: function(result){
alert(result);
$.each(result.results,function(item){
$('ul').append('<li>' + item + '</li>')
})
}
})
$('#div_list').toggle(900)
})

我的目标是当按钮被点击时,它会触发并发挥它的魔力并返回数据并将其附加到一个列表,完成后打开一个包含该列表的 Div。问题是我得到一个错误 "TypeError: undefined is not an object (evaluating 'a.length')"我的 Controller

function get_item()

{
$data = $this -> M_cashbook -> cashbook_items();

echo json_encode($data);

}

我不确定我在 Controller 中做的事情是否正确,但是当它设置为回显或打印时,它返回 jSon 字符串并在警报中标记,但如果更改,也会作为文本显示在我的屏幕顶部返回 json_encode 警报显示空白,没有 Json 没有任何作用。

我是不是做错了整件事?如果是,那么实现我想做的事情的正确方法是什么。

谢谢

更新:

function cashbook_items()
{
$this -> db -> select('name');
$this -> db -> from('items');
$query = $this -> db ->get();

return $query -> result();
}

这是我的模型

这是我的 2 个 Controller 函数,第一个是页面的默认加载,它调用第二个来获取内容,第二个只是做一些繁重的工作来调用数据库并返回数据

function items()
{

$data['items'] = $this ->get_item();
$this->load->view('/holders/header');
$this->load->view('/cash/v_cashbook_items_page',$data);
$this->load->view('/holders/footer');
}

function get_item()

{
$data = $this -> M_cashbook -> cashbook_items();

echo json_encode($data);

}

最后是 View

    <style>
ul {
list-style-type: none;
}
</style>
<div align="center" style="padding-top: 1%" id="div_main">
<div class="jumbotron">
<h1>Cashbook Items</h1>

<p>Add items to to cashbook so they used <br>when adding incomings and out goings later</p>

<form id="items_form" data-abide>
<div class="large-3 large-centered columns">
<label>New Item Name
<input type="text" required name="item" id="item_name">
</label>
<small class="error">No item added</small>
</div>

<button class="button radius" id="btnItem">Submit</button>
</form>
<a href="#" data-reveal-id="firstModal" class="radius button" id="btnList">Item List</a>
</div>

</div>

<div class="row">
<div id="firstModal" class="reveal-modal" data-reveal align="center">
<h3>Current Items</h3>

<p>Reccuring Items in the database</p>
<ul id="list_item">
</ul>
</div>
</div>
</div>
<br>

<script>

$('#btnList').click(function (e) {
$.ajax({
url: "<?php echo base_url();?>/cashbook/get_item",
dataType: 'text',
type: "POST",
success: function (result) {
var obj = $.parseJSON(result);
$.each(obj, function (index, object) {
$('#list_item').append('<li>' + object['name'] + '</li>');
})
}
})
})

$('#items_form').submit(function (e) {
e.preventDefault();
var data = $('#item_name').val();
alert(data);
$.ajax({
url: "<?php echo base_url();?>/cashbook/new_item",
type: 'POST',
data: "item=" + data,
success: function () {
alert('THIS WORKED');

},
error: function () {
alert('Nah died');
}

});
})
</script>

最佳答案

你可以使用 result_array();如果您要检索多行。它将返回纯数组。

function cashbook_items()
{
$this -> db -> select('name');
$this -> db -> from('items');
$query = $this -> db ->get();

return $query -> result_array();
}

那么在你看来:

$('#btnList').click(function(e){
$.ajax({
url:"<?php echo base_url();?>/cashbook/get_item",
dataType:'text',
type:"POST",
success: function(result){
var obj = $.parseJSON(result);
console.log(obj);
// $.each(result.results,function(item){
// $('ul').append('<li>' + item + '</li>')
// })
}
})
$('#div_list').toggle(900)
})

您可以使用 console.log(obj);

检查 obj 返回的内容
$.parseJSON(result); will result in the conversion of the encoded json to an array of object.

如果您想访问已解析的 JSON,请使用 ff。

obj[0]

这表示您将返回查询的第一行。

obj[0]['name'];

要访问单独的列,您可以使用该列的名称。您在模型中说明的内容。

$('#btnList').click(function(e){
$.ajax({
url:"<?php echo base_url();?>/cashbook/get_item",
dataType:'text',
type:"POST",
success: function(result){
var obj = $.parseJSON(result);
$.each(obj,function(index,object){
$('ul').append('<li>' +object['name']+ '</li>');
})
}
})
$('#div_list').toggle(900)
})

编辑:

在你看来。

  <style>
ul {
list-style-type: none;
}
</style>
<div align="center" style="padding-top: 1%" id="div_main">
<div class="jumbotron">
<h1>Cashbook Items</h1>

<p>Add items to to cashbook so they used <br>when adding incomings and out goings later</p>

<form id="items_form" data-abide>
<div class="large-3 large-centered columns">
<label>New Item Name
<input type="text" required name="item" id="item_name">
</label>
<small class="error">No item added</small>
</div>

<button class="button radius" id="btnItem">Submit</button>
</form>
<a href="#" data-reveal-id="firstModal" class="radius button" id="btnList">Item List</a>
</div>

</div>

<div class="row">
<div id="firstModal" class="reveal-modal" data-reveal align="center">
<h3>Current Items</h3>

<p>Reccuring Items in the database</p>
<ul id="list_item">
</ul>
</div>
</div>
</div>
<br>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript"></script>
<!--dont forget to add your jquery if you are using jquery functions and methods! -->
<script>
$(document).ready(function(){ //remember to put document.ready function when you are using jquery then insert your jquery functions inside.
$('#btnList').on('click',function (){
$.ajax({
url: "<?php echo base_url();?>index.php/cashbook/get_item",
dataType: 'text',
type: "POST",
success: function (result) {
var obj = $.parseJSON(result);
$.each(obj,function(index, object) {
$('#list_item').append('<li>' + object['name'] + '</li>');
});
}
})
});


$('#items_form').submit(function (e) {
e.preventDefault();
var yourItem = $('#item_name').val();
$.ajax({
url: "<?php echo base_url();?>/cashbook/new_item",
type: 'POST',
data: {data:yourItem},
success: function (data) {
alert('THIS WORKED');

},
error: function () {
alert('Nah died');
}

})
});

});
</script>

你的 Controller :

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

class cashbook extends CI_Controller{
function __construct() {
parent::__construct();
$this->load->helper('url');
$this->load->database();
$this->load->model('M_cashbook');
}

function index(){
$this->load->view('load_your_view_here'); //load your view here if you are using index as your default action when loading the default controller.
}

function items(){
$data['items'] = $this ->get_item();
$this->load->view('/holders/header');
$this->load->view('/cash/v_cashbook_items_page',$data);
$this->load->view('/holders/footer');
}

function get_item(){
$data = $this->input->post('data');
$data = $this -> M_cashbook -> cashbook_items();
echo json_encode($data);
}
}

关于php - Codeigniter AJAX 在不刷新的情况下从 MySQL 数据库获取数据的正确方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29302552/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com