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 をサポートしていますか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。