【发布时间】:2014-05-03 08:13:03
【问题描述】:
我正在尝试使用 ajax 函数显示数据库值。当我在我的数据库表中添加新行时,它不会立即显示记录。我必须刷新我的页面。然后只有它显示最近的日志详细信息。我认为我对 ajax 编码有疑问。我是ajax的新手。有人帮我解决我的问题..
function updateDriver(event)
{
$(".panel a").each(function(){
if($(this).hasClass("active"))
$(this).removeClass("active");
});
$(this).addClass("active");
ajaxObj.options.previousDriver = ajaxObj.options.data['did'];
ajaxObj.options.data = {'aid':'<?=$agent_id?>','did': event.data.did};
//Ajax call for Driver Log Update;
//function refreshEachMinute() {
$("#RecentLog").html('Loading...');
$.ajax({
url: "<?=LOAD_LOG?>/",//The resource that delivers loc data.
method: 'post', //data method
dataType:'html',
data: { aid: "<?=$agent_id?>", did: event.data.did },
success: function(data)
{
$('#RecentLog').html(data);
},
error: function()
{
$('#RecentLog').html('<p>No Entries</p>')
}
});
//}
//setInterval(refreshEachMinute, 200);
}
PHP
case LOAD_LOG:
if(!isset($_POST['aid']))
die();
$agent_id = $_POST['aid'];
$driver_id = $_POST['did'];
$sql = "SELECT * FROM ".TBL_DRIVER_LOG." where driver_id='$driver_id' ORDER BY id DESC";
$log_data = asort_result_array($sql);
$driver_log ="";
if(count($log_data))
foreach($log_data as $log)
{
extract($log);
$ago = TimeAgo($date_of_update);
echo '<p>
<span>'.$ago.', @ '.$average_speed.'km/hr</span><br>
<span style="font-size: 13px; font-weight: normal;">'.$current_place.'</span>
</p>
<hr class="tabhr">';
}
else
echo "No Entries";
exit();
【问题讨论】:
-
你怎么称呼这个ajax?我的意思是有没有请求这个 ajax 的点击事件?
-
@jai: 我已经更新了我的 ajax 代码..
标签: javascript php jquery ajax callback