短信网址可以在iOS上正常运行,并且可以正常打开消息应用程序,但在android上,它无法打开消息应用程序,只会崩溃。有谁知道为什么它不能在Android上打开消息应用程序?

home.html

<h5 class="padding5"><a [href]="sanitize('sms:' + 1234567890)"><ion-icon class="contactIcons" name="text"></ion-icon></a></h5>


home.ts

  sanitize(url: string) {
    return this.sanitizer.bypassSecurityTrustUrl(url);
  }

最佳答案

我认为您需要将正斜杠添加到您的短信链接中,如下所示:

<a [href]="sanitize('sms://' + 1234567890)">


另外,请确保在config.xml中允许使用意图:

<allow-intent href="sms:*" />

09-26 10:28