-1

asp MVC 4を使用してGoogle +1ボタンを追加し、インターネットアプリケーションに追加する方法

4

2 に答える 2

2

まず: https://developers.google.com/+/plugins/+1button/

Google +1 ボタンの追加は、MVC 4 自体とはあまり関係ありませんが、潜在的な実装は次のようになります。

ビュー/部分ビューで

<footer>
    <ul>
        <li>
            <div class="g-plusone" data-annotation="none"></div>
        </li>

        @* other buttons/links/whatever *@

    </ul>
</footer>

View に対応する _Layout.cshtml で

<script>
    (function() {
        var po = document.createElement( 'script' ); po.type = 'text/javascript'; po.async = true;
        po.src = 'https://apis.google.com/js/plusone.js';
        var s = document.getElementsByTagName( 'script' )[0]; s.parentNode.insertBefore( po, s );
    } )();
</script>

このスクリプトを条件付きでロードしたり、 内に配置したりできることに注意してください@section

于 2012-08-09T20:51:13.793 に答える
0

そのためには、最初にopnID認証キーを作成して詳細を確認する必要があります。このリンクを確認できます。 webapi/

于 2013-01-15T06:30:12.027 に答える