Angular2如何调用rest void api

时间:2017-12-06 22:07:24

标签: angular rest

我有一个休息api向用户发送电子邮件,这是一个无效的帖子方法。如何使用angular2调用此方法?我测试了这个api并且能够接收电子邮件。但是,当我从我的角度http帖子中调用此方法时,它无效。这是我的代码:

    sendEMailToUser(email: string, subject: string, emailbody: string): 
    Observable<void> {
       const link = constants.URL2 + 'SendEMailToUser';
       const headers = new Headers({ 'Content-Type': 'application/json' });
       const options = new RequestOptions({ headers: headers });        
       const body = {
          'email_address': email,
          'subject': subject,
          'body': emailbody
       }

      return this.http.post(link, body, options)
      .map((response: Response) => {})
      .catch(this.handleError)
 }

0 个答案:

没有答案