easyui支援php嗎?

2020-07-16 10:06:34

easyui支援php嗎?

easyui支援php,具體的使用方法是使用easyui來搭建頁面結構,然後通過php返回的資料進行展示即可。

EasyUI是一組基於jQuery的UI外掛集合體,EasyUI的目標就是幫助web開發者更輕鬆的打造出功能豐富並且美觀的UI介面。開發者不需要編寫複雜的javascript,也不需要對css樣式有深入的了解,需要了解的只有一些簡單的html標籤。

下面是一個easyUI+PHP展示資料的例子,供各位參考:

1、首先編寫HTML檔案

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/default/easyui.css">
    <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/icon.css">
    <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/color.css">
    <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/demo/demo.css">
    <script type="text/javascript" src="/mine/easyui/jquery.min.js"></script>
    <script type="text/javascript" src="/mine/easyui/jquery.easyui.min.js"></script>
</head>
<body>
<table id="dg" title="My Users" style="width:550px;height:250px"
       toolbar="#toolbar" idField="id"
       rownumbers="true" fitColumns="true" singleSelect="true"> 
    <thead>
    <tr>
        <th field="id" width="50" editor="{type:'validatebox',options:{required:true}}">ID</th>
        <th field="user_id" width="50" editor="{type:'validatebox',options:{required:true}}">UID</th>
        <th field="time" width="50" editor="text">TIME</th>
        <th field="type" width="50" editor="{type:'validatebox',options:{required:'true'}}">TYPE</th>
    </tr>
    </thead>
</table>
<script>
    $('#dg').datagrid({
        url: '/index/index/test2',
    });
</script>

</body>
</html>

2、然後編寫PHP檔案

<?php
$result = Db::table('o_attend')
            ->select();
$arr['total']=sizeof($result);
$arr['rows']=$result;
echo  json_encode($arr);
?>

3、php返回資料範例:

{
    "total": 2,
    "rows": [{
        "id": 1,
        "user_id": "1",
        "time": "1",
        "type": 1
    }, {
        "id": 2,
        "user_id": "1",
        "time": "1",
        "type": 2
    }]
}

相關文章教學推薦:php教學

以上就是easyui支援php嗎?的詳細內容,更多請關注TW511.COM其它相關文章!