我如何在PHP笨运行AJAX(How can i run ajax on php codeignit

2019-10-20 12:39发布

我试图使用JavaScript代码在我的笨项目。 但我没有执行它。 我尝试了解决它太多的方法:我叫外部JS代码,它不工作。 我把我的视图页它dind't工作为好。 我认为这个问题很简单,但我无法看到它。 你怎么看待这个问题呢?

view.php

<html>
<?php include("/external/css/style.css"); ?>
<head>
<title>New Customer</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>
<script>
function makeAjaxCall(){
    $.ajax({
        alert("I'm here"); // I cant see that
        type: "post",
        url: "http://localhost/codeigniter_2/index.php/homepage/verifyUser",
        cache: false,               
        data: $('#addCust').serialize(),
        success: function(json){                        
        try{        
            var obj = jQuery.parseJSON(json);
            alert( obj['STATUS']);


        }catch(e) {     
            alert('Exception while request..');
        }       
        },
        error: function(){                      
            alert('Error while request..');
        }
 });
}
</script>

</head>
<body>
    <h1>Customer Add</h1><a href="http://localhost/codeigniter_2/index.php">list</a>
    <form name="addCust" method="post" action="insert">
<table border="1">
<tr>
<th>Customer Name:</th>
<td><input type="text" id="custom" name="customerName"/></td>
<tr>
<th>Customer Phone:</th>
<td><input type="text" name="phone"/></td>
<tr>
<th>Address:</th>
<td><input type="text" name="address"/></td>
.
.
.
<tr>
<td><input type="button" onclick="javascript:makeAjaxCall();" value="Submit"></td>
<td><input type="reset"></td>
</tr>
</form>
</table> 
</body>
</html>

conroller.php

public function verifyUser()
    {
        $userName =  $_POST['customerID'];
        $phone =  $_POST['phone'];
        $address = $_POST['address'];
        if($userName=='' && $phone=11){

            $status = array("STATUS"=>"true");  
        }
        echo json_encode ($status) ;    
    }

怎么了??

Answer 1:

你需要把你的代码在文档准备好处理程序 -

$(document).ready(function() {
    // your code here
    function makeAjaxCall....
    // EDIT: adding the click handler
    $('#formSubmit').click(function()....
});

此外,而不是这样做 -

<input onclick="javascript:makeAjaxCall();" value="Submit">

我会给输入自己的ID -

<input name="submit" id="formSubmit" value="Submit">

并添加一个单击处理程序的JavaScript -

$('#formSumbit').click(function(e) {
    e.preventDefault(); // keeps the button from acting normally
    makeAjaxCall(); // calls the function
});

还有一两件事-使用console.log()而不是alert()在你的代码。 警报是没有故障的好方法,因为它们会导致代码停止,直到确认和AJAX调用过程中使用它们尤其糟糕。



Answer 2:

改变这种

<input type="button" onclick="javascript:makeAjaxCall();" value="Submit">

<input type="button" onclick="makeAjaxCall();" value="Submit">

EDITED

$userName =  $_POST['customerID'];// check this
$phone =  $_POST['phone'];
$address = $_POST['address'];
if($userName=='' && $phone=11){

    $status = array("STATUS"=>"true");
}
echo json_encode ($status) ;

还可以添加id形成

<form name="addCust" id="addCust" method="post" action="insert">


Answer 3:

你好在这里,您可以查看下面的链接,它会为你有用

    http://www.ccode4u.com/how-jquery-ajax-works-in-codeigniter.html

谢谢 :)



文章来源: How can i run ajax on php codeigniter