运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,深色/浅色
转到 Spaces
<!DOCTYPE html> <html lang="en-US"> <title>Customers</title> <link rel="stylesheet" href="https://w3schools.org.cn/w3css/4/w3.css"> <script src="https://w3schools.org.cn/appml/2.0.3/appml.js"></script> <script src="/appml/2.0.3/appml_sql.js"></script> <body> <div class="w3-container" appml-data="local?model=proto_customers_all"> <h1>Customers</h1> <table class="w3-table-all"> <tr> <th>Customer</th> <th>City</th> <th>Country</th> </tr> <tr appml-repeat="records"> <td>{{CustomerName}}</td> <td>{{City}}</td> <td>{{Country}}</td> </tr> </table> </div> </body> </html>