如何在HTML页面中包含一个苗条的api?

时间:2016-01-26 05:51:43

标签: php html api routes slim

我创造了一个苗条的api。它获取db项并显示它。现在我如何将它包含在HTML页面中? 这是api路线

<div class = "view">
<-- I want the api to be displayed here -->
</div>

这是我要插入api的html页面。

{{1}}

1 个答案:

答案 0 :(得分:0)

经过一些尝试,我找到了解决方案。 使用脚本调用api路由。它工作正常。

<script>
$( "#view" ).load( "http://localhost/login/user_table/001" );
</script>