如何将用户的数据从 db 加载到 php 到 ajax 然后操作 DOM?
这就是我的想法:
用户登录 -> 使用 php 从 db 获取用户数据 -> ajax 使用 post 请求所有数据 -> 在 DOM 上做一些事情
ajax 是什么样子的?我只知道如何使用它来执行从 ajax 到 php 到 db 的操作:
$.ajax({
type: "POST",
url: "send.php",
data: { item : text }
})
你可以在send.php中做你的后端操作,然后你可以从后端返回html数据
例如。在发送.php
echo "<h2>" . $your_db_thing . "</h2>";
在ajax中,添加成功设置,参考Jquery Ajax
$.ajax({
type: "POST",
url: "send.php",
data: { item : text },
success:function(data) { // data will be <h2>your_db_thing</h2>
$('#successDiv').html(data); // the success element in which your html to be placed
}
})