简单的问题,我正在尝试在我的 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);
}
应避免在视图中包含逻辑,而应将其放在组件代码中。