我有一个单独的nodejs restful api和单独的angular 4接口。我可以通过指定路径将从接口提交的数据传递到restful api吗?

最佳答案

你试过打电话做如下服务:

import {Injectable} from '@angular/core';
import {Http, Response} from '@angular/http';
import {Observable} from 'rxjs/Rx';

@Injectable()
export class YourService {
  constructor(private http:Http) { }
  // Uses http.get() to communicate with NodeJs
  getSomeThing() {
    return this.http.get('yourAPIUrl').map((res:Response) => res.json());
  }
}

关于node.js - 我有单独的 Node REST API和单独的Angular 4接口(interface)。我可以将数据从Angular 4传递到单独的REST API吗?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47272264/

10-09 20:09