zoukankan      html  css  js  c++  java
  • CI笔记6 json 传值

    CI3.x 使用json,配合easyui,

    其实很简单,走了很多的弯路,

    首先在ci的控制器重,建立2个方法,一个用于显示加载view,一个用于echo json,就可以了。

    需要注意的是,在ci的配置中config文件中,要配置base_url ,而且,在引用时localhost和127.0.0.1不能互用,

    这一段,是ci的php控制器中的方法

    public function demojson()
        {
            $this->load->database();
            $query = $this->db->query('select id,nav_name,nav_desc from nav');
            $row = $query->result_array();
            $json = json_encode($row);
            echo $json;
        }
    
    public function demo2()
        {
            $this->load->view("demo2.html");
        }

     
    这是view文件,其中的site_url文件,为test。
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>demo2</title>
        <link rel="stylesheet" href="http://localhost/easyui/themes/default/easyui.css">
        <link rel="stylesheet" href="http://localhost/easyui/themes/icon.css">
        <script type="text/javascript" src="http://localhost/easyui/jquery.min.js"></script>
        <script type="text/javascript" src="http://localhost/easyui/jquery.easyui.min.js"></script>
        <script type="text/javascript" src="http://localhost/public/demo2.js"></script>
    </head>
    <body>
        <?php echo  site_url("demo/demojson"); ?>
        <table id="dg"></table>
    </body>
    </html>
     
    这个是demo2.js文件,url在引用数据的时候,只需要传递方法名,传值,即可。
    $(function(){
        $('#dg').datagrid({
                url:'demojson',
            columns:[[
                {field:'id',title:'id',100},
                {field:'nav_name',title:'name',200},
                {field:'nav_desc',title:'描述',300}
            ]]    
        });
    
    });

    最终运行结果:

  • 相关阅读:
    IP 封包中的 Header 的 Protocol 字段的 值
    二叉树算法题
    PageFile Swap File
    Quick sort C# code(2)
    VS中Sos调试扩展简介 (转帖)
    BUG: "Old format or invalid type library" error when automating Excel on 64 bit server 2008
    Sql server 2005 connection string
    让IE支持自己的协议
    偶然间,我发现了一个秘密能使盗版的windowsXP变成正版
    Excel C# Automation
  • 原文地址:https://www.cnblogs.com/sdgtxuyong/p/5482671.html
Copyright © 2011-2022 走看看