简体   繁体   English

Angular2如何使用服务类POST数据

[英]Angular2 How to POST data using a service class

I have a simple application form which I am trying to post to the server. 我有一个简单的申请表,我试图发布到服务器。 I am fairly new to Angular2 我对Angular2很新

How can I pass the data from the component to the service and onto the server for a POST request. 如何将数据从组件传递到服务并传递到服务器以获取POST请求。

The POST is working fine when I try it directly from FireFox plugin 'httpRequester' 当我直接从FireFox插件'httpRequester'尝试它时,POST工作正常

This is the TaskComponent.ts 这是TaskComponent.ts

@Component({
    selector: 'tasks',
    template: `<div mdl class="mdl-grid demo-content">

          <div class="demo-graphs mdl-shadow--2dp mdl-color--white mdl-cell mdl-cell--8-col">
                <h3>Create Task Page</h3>   

                <form action="#" (ngSubmit)="onSubmit()">
                  <div class="mdl-textfield mdl-js-textfield mdl-textfield--floating-label">
                    <input class="mdl-textfield__input" type="text" pattern="[A-Z,a-z]*" id="taskname" [(ngModel)]="data.taskname"/>
                    <label class="mdl-textfield__label" for="taskname">Task Name</label>
                    <span class="mdl-textfield__error">Only alphabet and no spaces, please!</span>
                   </div> 
                  <button class="mdl-button mdl-js-button mdl-button--raised mdl-button--colored" type="submit">Create Task</button>
                </form>          
    `,
    directives: [ROUTER_DIRECTIVES, MDL]
})

export class CreateTaskComponent {

    data: any

    constructor() { 
      this.data = {
        //taskname: 'Example Task'
      };
    }

    onSubmit(form) {
      console.log(this.data.taskname);    <--Data is passed upon submit onto the console. Works fine.  

      //Need to call the postApartment method of ApartmentService     
    }
}    

ApartmentService.ts ApartmentService.ts

import {Http, Response} from 'angular2/http'
import {Injectable} from 'angular2/core'
import 'rxjs/add/operator/map';

@Injectable()
export class ApartmentService {

    http: Http;
    constructor(http: Http) {
        this.http = http;
    }

    getEntries() {
        return this.http.get('./api/apartments').map((res: Response) => res.json());
    }

    getProfile(userEmail :string){
       return this.http.get(`./api/apartments/getprofile/${userEmail}`).map((res: Response) => res.json());
    }

    postApartment(){
        // Not familiar with the syntax here
    } 
}

Server.ts Server.ts

router.route('/api/apartments')          
    .post(function(req, res) {        
        var apartment = new Apartment();
        apartment.name = req.body.name;

        apartment.save(function(err) {
            if (err)
                res.send(err);
            res.json({ message: 'Apartment created!' });
        });
  })

You can inject service via dependency injection and use it in the component 您可以通过依赖注入注入服务并在组件中使用它

export class CreateTaskComponent {
    constructor(){private _apartmentService: ApartmentService}{}
}

And you can access this in any of the component function via 您可以通过任何组件功能访问它

onSubmit(form) {
  console.log(this.data.taskname);    <--Data is passed upon submit onto the console. Works fine.  

  //Need to call the postApartment method of ApartmentService     
  this._apartmentService.postApartment()
}

And when bootstraping the component you have to add it as dependency via 在引导组件时,您必须将其作为依赖项添加

bootstrap(AppComponent, [ApartmentService]);

Another option for doing the last step is by added providers in the Component decorator like 执行最后一步的另一个选择是在Component装饰器中添加提供程序

@Component{
  providers: [ApartmentService]
}

Inject the apartmentService in the component, No need of providers as I have bootstrapped it. 在组件中注入apartmentService,不需要提供者,因为我已经引导它。 (If you bootstartp the service, Do not include it in providers. It breaks the system) (如果您启动该服务,请不要将其包含在提供程序中。它会破坏系统)

export class CreateTaskComponent {

    data: any

    constructor(private apartmentService: ApartmentService) { 
      this.data = {};
    }

    onSubmit(form) {
      this.apartmentService.postApartment(this.data);           
    }
}    

The critical piece is the postApartment() method in the service 关键部分是服务中的postApartment()方法

 postApartment(data :any){
          return this.http.post('/api/apartments',
               JSON.stringify(data),{headers : new Headers({'Content-Type':'application/json'})
               })
               .map((res: Response) => res.json()).subscribe();
    } 

Also make sure on the server.js code, the mongoose fields match the http body parameters being passed. 还要确保在server.js代码上,mongoose字段与传递的http body参数匹配。 I had to fix it to make it work. 我不得不修复它以使其工作。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM