Heim  >  Fragen und Antworten  >  Hauptteil

node.js – Wie erhalte ich den Wert der von der Post-Anfrage zurückgegebenen Antwort?

    getUser: function (sessionId) {
        fetch('/account_auth_admin_new_test/personal-api.accessLogin', {
            method: 'POST',
            headers: {
                'Content-Type': 'application/json'
            },
            body: JSON.stringify({
                sessionId: sessionId,
                enterpriseCode: "SUNEEE",
                clientIp: "127.0.0.1",
                encryptCode:"1234567899876543",
                appCode: "XIANGPU"
            })
        }).then(function(res){
            console.log(res.json())
        }).then(function(err){
            console.log('错误',err)
        })
    }

Fetch-Modul: https://github.com/github/fetch

怪我咯怪我咯2730 Tage vor1086

Antworte allen(1)Ich werde antworten

  • 大家讲道理

    大家讲道理2017-05-19 10:50:09

    getUser: function (sessionId) {
        fetch('/account_auth_admin_new_test/personal-api.accessLogin', {
            method: 'POST',
            headers: {
                'Content-Type': 'application/json'
            },
            body: JSON.stringify({
                sessionId: sessionId,
                enterpriseCode: "SUNEEE",
                clientIp: "127.0.0.1",
                encryptCode:"1234567899876543",
                appCode: "XIANGPU"
            })
        }).then(function(res){
            return res.json()
        }).then(function(json) {
            console.log('parsed json', json)
        }).catch(function(ex) {
            console.log('parsing failed', ex)
        }).then(function(err){
            console.log('错误',err)
        })
    }

    Antwort
    0
  • StornierenAntwort