Параметры IBM Cloud Functions не определены - PullRequest
0 голосов
/ 01 мая 2019

Я использую веб-действие IBM Cloud Functions, но не могу получить доступ к параметрам.

Параметры: enter image description here

Код:

function main(params) {

module = params.module;
attribute = params.attribute;

var options = {
        method: 'POST',
        uri: params.uri,
        headers: {
            'Content-Type': 'application/json; charset=utf-8',
        },
        body: {
            module: module
        },
        json: true
    };

    console.log(options);
    return { message: options };
}

Вывод облачных функций IBM:

enter image description here

Выход почтальона

enter image description here

...