ユーザーの電話番号を使用してログインするアプリケーションを作成しています。したがって、数字のAPIを使用しています。これで、その Web ログインの使用方法を見てきました。しかし、ポリマー Web アプリケーションに統合できません。
<head>
<link rel="import" href="../bower_components/polymer/polymer.html">
<link rel="import" href="shared-styles.html">
<script id="digits-sdk" src="https://cdn.digits.com/1/sdk.js" async></script>
</head>
前述のようにスクリプトを head タグに貼り付けました。
<script>
Polymer({
is: 'my-view1',
properties:{
textArea: {
type: String,
value: "this is text area",
notify: true,
reflectToAttribute: true
}
},
attached: function(){
console.log("Attached")
this.$.Digits.init({ consumerKey: 'YOUR KEY HERE' })
}
});
もう 1 つの疑問は、Polymer({}); の後に JavaScript スクリプトを貼り付けられるかどうかです。しかし、<script>
タグの下に?これにより問題が発生しますか。または、すべてのコードを Polymer({}); の下に記述する必要があります。