0

RSSフィードの更新をHTML5デスクトップ通知にプッシュしたいのですが、ユーザーが自分のサイトをChromeで開いた場合に受信します。

私は次のことを行う必要があると思います(私が概要でこれを説明したよりもはるかに賢い人)-更新のためにフィードをポーリングするサーバー側コンポーネントを作成します。そしておそらくそれらをデータベースに保存します(?)。次に、クライアント側のコンポーネントは更新をチェックし、HTML5通知APIを使用してそれらを表示します。

誰かがそれを確認し、可能であれば、これを機能させるために必要なさまざまなビットを追跡できるように、より詳細に私を助けてくれますか?とても有難い。

4

1 に答える 1

1

jQueryを使用していると仮定しますが、プラグインを使用してもかまいません。この場合、RSSコードの解析にjFeedプラグインを使用します。

// Desktop notifications are only available on WebKit browsers, for now, so only carry out
// notifications if the API is available.
if (window.webkitNotifications) {

    // Just a piece of data to determine whether 1) the page just loaded, and 2) there are any
    // new elements in the feed.
    var lastTime = null;

    // This is to check if you have permissions to display notifications. Usually, the
    // checkPermissions method only returns a number. 0 being that you don't have permission
    // to display notifications, yet.
    if (window.webkitNotifications.checkPermissions() <= 0) {
        // If you don't have permission, then get the permission from the user.
        window.webkitNotifications.requestPermission(callback);
    }

    // The code below will run every thirty seconds.
    setInterval(function () {
        // What we want to do here is carry out an AJAX request to check for changes in the RSS
        // feed only if we have permission to display notifications. Otherwise, what's the point
        // of checking for changes if the user doesn't want to know?
        if (window.webkitNotifications.checkPermissions() > 0) {
            $.jFeed({
                url: 'urltofeeds',
                success: function (feed) {
                    // Looks at the latest item's time, and checks to see if it's any different
                    // than what we have in memory.
                    if (lastTime !== feed.items[0].updated) {

                        // If so, determine whether we recorded the time, or not.
                        if (lastTime !== null) {
                            // If we did record the time, that means there are new content from
                            // the last time we checked.
                            window.webkitNotifications()
                        }

                        // Update the last time.
                        lastTime = feed.items[0].updated;
                    }
                }
            });
        }
    }, 30000);
}

私は次のことを行う必要があると思います(私が概要でこれを説明したよりもはるかに賢い人)-更新のためにフィードをポーリングするサーバー側コンポーネントを作成します。そしておそらくそれらをデータベースに保存します(?)。

あなたの友人が長いポーリングを説明したように聞こえます。これは、ブログのような単純なものに対する完璧主義者のアプローチです。

単純なポーリングも同じです。違いは、通知は瞬時にではなく、すべてのポーリング間隔でのみ表示されることです。

于 2012-07-29T01:37:12.447 に答える