test_ThinkPHP+AJAX

Posted 司会铭

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了test_ThinkPHP+AJAX相关的知识,希望对你有一定的参考价值。

TestController.class.php

<?php
namespace Home\\Controller;
use Think\\Controller;
class TestController extends Controller{
    
        public function test()
    {
        
            if(empty($_POST))
        {
            $this->display();
        }
            else
        {
            $code = I(\'code\');
        
            $sheng = M(\'sheng\');
            
            $name = $sheng->where("sheng_id = \'{$code}\'")->find();
            
            $this->ajaxReturn($name);
            
            
        }
    }
}

?>
View Code

test.html

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="__PUBLIC__/JQ/jquery-1.12.4.min.js"></script>
</head>
<body>
<div>代号:<input type="text" id="code"></div>
<input type="button" value="显示" id="btn">
<div id="aa"></div>

</body>
</html>
<script type="text/javascript">

$(document).ready(function(e) {
    
    $("#btn").click(function(e) {
        
    var code = $("#code").val();
    
    $.ajax({
        
              url:"__SELF__",
              data:{code:code},
              dataType:"json",
              type:"POST",
              success: function(data){
            
                 $("#aa").html(data.sheng_name);
                  
                  }
            })

        });
});

</script>
View Code

 

以上是关于test_ThinkPHP+AJAX的主要内容,如果未能解决你的问题,请参考以下文章

AJAX相关JS代码片段和部分浏览器模型

Javascript代码片段在drupal中不起作用

前端面试题之手写promise

Ajax 片段元标记 - Googlebot 未读取页面内容

执行AJAX返回HTML片段中的JavaScript脚本

javascript AJAX片段