0
こんにちは私はイオニックに問題があります。私はwhatsappを送信するリンクが付いたボタンがあります。しかし、IOSは会話を開かない。Ionic - whatsappを送信すると、IOSでのみ動作しません。
これは私のコードです:
HTML:
<a [href]=“makeUrl(propiedad)”>
<button class=“button-footer”>
<ion-icon class=“icon-footer” name=“logo-whatsapp”>
</button>
JS:
this.trustedDashboardUrl = this.sanitizer.bypassSecurityTrustResourceUrl(“whatsapp://send?text=hello&phone=”+AppSettings.whatsapp+"&abid="+AppSettings.whatsapp);
return this.trustedDashboardUrl;
CONFIGのXML:
<access launch-external=“yes” origin=“whatsapp:" />
<allow-intent href="whatsapp:” />
をチェックしていますが、保存された連絡先を持っていない場合は、IOSプラットフォームでは動作しません...知りませんプラグインが動作しない、誰にでも送信する必要がある –