我需要从以下数组中提取Indication

 {
    "records": [{
        "id": "recBgV3VDiJeMkcwo",
        "fields": {
            "DrugName": "azatadine",
            "nameapi": ["recBgV3VDiJeMkcwo"],
            "Indication": "For the relief of the symptoms of upper respiratory mucosal congestion in perennial and allergic rhinitis, and for the relief of nasal congestion and eustachian t.b. congestion.",
            "lookup": ["azatadine"],
            "drugID": "recBgV3VDiJeMkcwo"
        },
        "createdTime": "2018-11-09T19:38:24.000Z"
    }]
 }


当我尝试执行response.records.fields[0]["Indication"]时,我不确定。

这是我的完整代码:

function httpGet() {

return new Promise(((resolve, reject) => {

var options = {

host: 'api.airtable.com',

port: 443,

path: '/v0/appYqfJ3Rt2F0sRGn/Database?filterByFormula=(DrugName=%27azatadine%27)',

method: 'GET',

headers: {

Authorization: 'Bearer key123456789'

}

};

const request = https.request(options, (response) => {

response.setEncoding('utf8');

let returnData = '';

response.on('data', (chunk) => {

returnData += chunk;

});

response.on('end', () => {

resolve(returnData);

});

response.on('error', (error) => {

reject(error);

});

});

request.end();

}));

}



const UserReplyIntent_Handler = {

canHandle(handlerInput) {

const request = handlerInput.requestEnvelope.request;

return request.type === 'IntentRequest' && request.intent.name === 'UserReplyIntent' ;

},

async handle(handlerInput) {

const response = await httpGet();

console.log(response);

return handlerInput.responseBuilder

.speak("Okay. Here we go" + response.records[0].fields.Indication)

.reprompt("say again")

.getResponse();

},

};



在此先感谢您的帮助。

最佳答案

它应该是response.records[0].fields.Indication

07-28 10:22