onclick 中的字符串插值(离子 2 + 角度 2)



简单的问题,我正在尝试在我的 Ionic 2 应用程序中的"onclick"中传递一个字符串,但它一直给我一个错误。

<button onclick="window.plugins.socialsharing.shareViaWhatsApp(null, null, '{{sound.file}}', null)">Enviar no whats</button>

错误日志

 Can't bind to 'onclick' since it isn't a known native property

它应该是这样的:

<button (click)="share(sound.file)">Enviar no whats</button>

在您的组件中

public share(file: string): void {
    window.plugins.socialsharing.shareViaWhatsApp(null, null, file, null);
}

应避免在视图中包含逻辑,而应将其放在组件代码中。

相关内容

  • 没有找到相关文章

最新更新