无法将post请求中的json文件发送到ionic2

时间:2017-11-21 19:22:13

标签: json node.js angular http ionic2

我正在使用ionic2向本地nodejs服务器发送请求,但问题是除非我将标头Content-Type设置为application/x-www-form-urlencoded,否则请求不会到达服务器,现在问题是到达的身体不是json文件。 这是我的ionic2代码

import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
import { Http, Headers } from '@angular/http';
import 'rxjs/add/operator/map';
@Component({
  selector: 'page-home',
  templateUrl: 'home.html'
})
export class HomePage {
  constructor(public navCtrl: NavController, public http: Http) {}
  send(){
    let headers = new Headers({
      // 'Content-Type': 'application/json'
      'Content-Type': 'application/x-www-form-urlencoded'
    });
    let body = {a: 'b'};
    this.http.post('http://localhost:8010/api/test', body, {headers: headers})
      .map(res => res.json())
      .subscribe(data => {
        console.log('response11: ', data);
      }, err => {
        console.log('ERR: ', err);
      });
  }
}
(click)='send()'

按钮内调用

发送

这是我的服务器代码:

var express = require('express');
var app = express();
var bodyParser = require('body-parser');

app.use(bodyParser.json());
app.use(bodyParser.urlencoded({extended: true}));

app.post('/api/test', function(req, res){
    console.log(req.body);
    res.send('from nodejs');
});
app.listen(8010);
console.log('listening on port 8010...');

当我将此请求的正文打印到控制台时,它会像这样打印

{ '{\n  "a": "b"\n}': '' }

现在,如果我将Content-Type更改为application/json,则服务器不会记录任何内容,而离子页面显示错误状态为0

那么从ionic2向节点服务器发送http POST或GET请求的正确方法是什么?

1 个答案:

答案 0 :(得分:0)

我相信您正面临CORS问题。通过在服务器上执行以下操作,在服务器上启用CORS:

const cors = require("cors");
  const originsWhitelist = [
        "http://localhost:8100"
      ];
      const corsOptions = {
        origin: function (origin, callback) {
          var isWhitelisted = originsWhitelist.indexOf(origin) !== -1;
          callback(null, isWhitelisted);
        },
        credentials: true
      };
      //here is the magic
      app.use(cors(corsOptions));