我正在尝试使用Angular 4和Ionic 3构建的应用程序向WhatsApp号码发送消息。我在按钮点击事件上尝试这个。这是我的代码。
HTML
<div padding>
<button id="addBtn" (click)="WhatsApp()" ion-button color="primary" block>WhatsApp</button>
</div>
TS
WhatsApp(){
return new Promise(resolve => {
console.log("Before API")
this.http.get("https://api.whatsapp.com/send?phone=121234567891&text=I'm%20interested%20in%20your%20car%20for%20sale").map(response => response.json()).subscribe(data => {
resolve(data);
console.log("After API",data)
}, err => {
});
});
}
我想在按钮点击上发送消息。那么我必须在哪里指定我要发送的号码和号码,我所做的方式是否正确?提前致谢