24

ブラウザ内からモバイルデバイスにuri:schemeが登録されているかどうかを検出する方法があるのではないかと期待しています。

IE:Facebook、Twitter、Pinterestアプリがインストールされており、関連するuri:schemeから起動できるかどうかを確認したいと思います。

if(fb_isInstalled) {
    // href="fb://profile/...."
} else {
    // href="http://m.facebook.com/..."
}

基本的に、ユーザーがFacebookをインストールしている場合はアプリを起動しますが、アプリがインストールされていない場合はモバイル版のfbWebサイトにフォールバックします。

4

1 に答える 1

22

私は実用的な解決策を持っていると思います。

 <!-- links will work as expected where javascript is disabled-->
 <a class="intent"   
    href="http://facebook.com/someProfile"   
    data-scheme="fb://profile/10000">facebook</a>

そして、私のJavaScriptはこのように機能します。
注:そこには小さなjQueryが混在していますが、使用したくない場合は使用する必要はありません。

(function () {

    // tries to execute the uri:scheme
    function goToUri(uri, href) {
        var start, end, elapsed;

        // start a timer
        start = new Date().getTime();

        // attempt to redirect to the uri:scheme
        // the lovely thing about javascript is that it's single threadded.
        // if this WORKS, it'll stutter for a split second, causing the timer to be off
        document.location = uri;
        
        // end timer
        end = new Date().getTime();

        elapsed = (end - start);

        // if there's no elapsed time, then the scheme didn't fire, and we head to the url.
        if (elapsed < 1) {
            document.location = href;
        }
    }

    $('a.intent').on('click', function (event) {
        goToUri($(this).data('scheme'), $(this).attr('href'));
        event.preventDefault();
    });
})();

私はまた、あなたがフォークして混乱させることができる要点としてこれを投げました。必要に応じて、要点をjsfiddleに含めることもできます。


編集

@kmalleaは要点をフォークし、根本的に単純化しました。 https://gist.github.com/kmallea/6784568

// tries to execute the uri:scheme
function uriSchemeWithHyperlinkFallback(uri, href) {
    if(!window.open(uri)){
        window.location = href;
    }
}
// `intent` is the class we're using to wire this up. Use whatever you like.
$('a.intent').on('click', function (event) {
    uriSchemeWithHyperlinkFallback($(this).data('scheme'), $(this).attr('href'));
    // we don't want the default browser behavior kicking in and screwing everything up.
    event.preventDefault();
});
于 2012-12-03T01:23:31.950 に答える