0

ニュース フィード マスターと呼ばれるコードの自動更新スニペットを取得し、それを自分の好みに合わせて実装してカスタマイズすることができました。ページ全体を更新するのではなく、入力時に新しい投稿を表示するための自動更新を除いて、すべてが機能しているようです。

これは、データベースに新しいフィードを照会する index.php のセクションです。

<?php
/**
* Preparing and getting response for latest feed items.
**/
if(isset($_POST['latest_news_time'])){
$result = $db->query("SELECT *
FROM users U, messages M WHERE U.user_id = M.uid_fk AND M.created > '".$_POST['latest_news_time']."' ORDER BY M.created DESC");
$current_time = $_POST['latest_news_time'];
$item = $db->fetch_assoc($result);
$last_news_time = $item['created'];
while ($last_news_time < $current_time) {
    usleep(1000); //giving some rest to CPU
    $item = $db->fetch_assoc($result);
    $last_news_time = $item['created'];
}
?>
            <li id="<?=$item['created']?>">
            <div class="liSub">
                <div class="feed_image"><img src="uploads/user/<?=$item['image']?>" alt="<?=$item['image']?>"></div><!-- image -->
                <div class="head"><a href="profile.php?user=<?=$item['username']?>"><?=$item['first_name']?> <?=$item['last_name']?></a><?php if($item['status']=='politician')print"<img src='images/tick.png' alt='verified' class='verified'>";?></div><!-- username -->
                <div class="feedtext"><span><?=$item['message'];?></span></div><!-- message -->
                <div class="bottom">
                <p><?=$item['like_count']?></p><a href="#"><img src="images/Like-button.png" alt="like" class="like"></a><!-- like -->
                <p><?=$item['dislike_count']?></p><a href="#"><img src="images/disLike-button.png" alt="dislike" class="dislike"></a><!-- dislike -->
                <p><?=$item['comment_count']?> Comment(s)</p><!-- comments -->
                </div>
            </div>
            </li>
<?php
exit;
}
?>

そして、これが自動更新を実行するはずの私のJavaScriptのセクションです

/**
* Function to update the news feed
**/
function updateFeed(){
    var id = 0;
    id = $('#feeds li :first').attr('id');
    $.ajax({
        'url' : 'index.php#feeds ul',
        'type' : 'POST',
        'data' : {
            'latest_news_time' : id  
        },
        success : function(data){
            setTimeout('updateFeed()', 1000);
            if(id != 0){
                $(data).prependTo("#feeds ul");
            }
        }
    }) 
}

問題の解決に役立てていただければ幸いです。私はjqueryのプロではないので、眠れぬ夜を過ごしています。ありがとう。

4

1 に答える 1

0

cacheデフォルト値が true であるオプションがあります。これを ajax 呼び出しのどこかに追加します。

'cache': false,

また、エラー ハンドラがないため、隠れたエラーが発生する可能性があります。

error: function(jqXHR, textStatus, errorThrown){

    alert(textStatus);

}
于 2013-09-09T02:16:39.290 に答える