0

我想+92在 Twitter Digits for web 中将我的默认国家/地区设置为。这可以在按钮单击事件上完成。但我不希望它在按钮点击上。

function onLoginButtonClick(event){
  Digits.logIn({
    phoneNumber: '+92'
  })
    .done(onLogin) /*handle the response*/
    .fail(onLoginFailure);
}

我想用我的默认国家/地区显示可嵌入小部件。任何可能的解决方案?

4

1 回答 1

0

经过几天的搜索。我从twittercommunity中发现 phoneNumber: '+92',可以将其传递给嵌入函数accountFieldstheme

Digits.embed({
  container: '#my-digits-container',
  theme: {
   /* Input fields borders */
  },
  phoneNumber: '+92',
  accountFields: Digits.AccountFields.Email
})
.done(onLogin) /*handle the response*/
    .fail(onLoginFailure);
  };
于 2016-08-24T20:44:52.520 回答