向InAppBrowser URL添加变量

时间:2019-07-22 10:09:36

标签: ionic-framework ionic4

想问我如何在InAppBrowser url上添加变量或参数?尽管单击{{id}}可以作为文本打字稿使用,但在单击打开时,URL中似乎不可读。

我的按钮代码如下,

<ion-button expand="full" fill="solid" color="primary" (click)="
openWithSystemBrowser('https://wa.me/123456789?text=Hi! My domain and keywords details for Order #{{id}} are as follows...')">
{{ 'Notify Us' | translate }}
</ion-button>

谢谢。

1 个答案:

答案 0 :(得分:0)

似乎您应该使用:

<ion-button expand="full" fill="solid" color="primary" (click)="
openWithSystemBrowser(`https://wa.me/123456789?text=Hi! My domain and keywords details for Order #${id} are as follows...`)">
{{ 'Notify Us' | translate }}
</ion-button>

我已将网址周围的''切换为反引号。

我也将您的{{ }}表示法交换为字符串互相关${id}