我是离子/角/打字稿的新手...
我有以下按钮:
<button ion-button (click)="shareMe('hello')">Hello</button>
<button ion-button (click)="shareMe('world')">World</button>
我有以下功能:
shareMe(){
this.sharingVar.share($STRING)
.then(()=>{
alert("Success");
},
()=>{
alert("failed");
})
};
基本上,当我单击给定的按钮时,我想将变量传递给该函数进行处理。上面的代码显然不起作用...但是您如何在Angular/TypeScript中执行此操作?
有没有办法将变量$字符串传递给函数?
请尽可能描述性。非常感谢。
您只需要将参数添加到shareMe()
函数。
shareMe(shareOption: string){
this.sharingVar.share(shareOption)
.then(() => {
alert("Success");
})
.catch(() => {
alert("failed");
});
};
更新:添加了@Aluan Haddad的建议,因为您正在学习,而这种事情是您现在需要知道的,而不是在写5k Loc之后。