无法在bot框架中读取未定义错误的属性“长度”

问题描述 投票:1回答:2

我从axios获取请求的数据,并将其移动到数组xyz。但是当我将xyz发送到step.prompt时,它会抛出这个错误:

“[onTurnError]:TypeError:无法读取未定义的属性'length'

当我在日志中打印xyz时,它具有我需要的正确数据。

async someFunction(step){
    var xyz = [];
    try {
        const response = await axios.get(`url`);

        for (var i = 0; i < response.data.length; i++) {
            xyz[i] = response.data[i].xzyElement;
        }
    } catch (error) {
        console.log(`error ${error}`);
    }
    return await step.prompt(PROMPT, 'Choose any one.', xyz);
}

我想将xyz中的元素作为提示发送给用户。

javascript node.js azure botframework
2个回答
0
投票

对于使用提示的bot框架,您可以使用类似下面的内容

提示尺寸验证样品

return await stepContext.prompt(
        SIZE_RANGE_PROMPT, {
            prompt: 'How many people is the reservation for?',
            retryPrompt: 'How large is your party?',
            validations: { min: 3, max: 8 },
        });

提示选择位置样本

async promptForLocation(stepContext) {
    // Record the party size information in the current dialog state.
    stepContext.values.size = stepContext.result;

    // Prompt for location.
    return await stepContext.prompt(LOCATION_PROMPT, {
        prompt: 'Please choose a location.',
        retryPrompt: 'Sorry, please choose a location from the list.',
        choices: ['Redmond', 'Bellevue', 'Seattle'],
    });
}

我假设,你的第二个参数应该是任何数组/列表,而不是你传递名为“选择任何一个”的字符串,这就是为什么它给出了“无法读取未定义的属性'长度”,因为它必须首先尝试访问或数组的第二个元素和传递的param是一个字符串。

prompt方法的第二个参数采用提示选项对象,该对象具有以下属性。

enter image description here

作为参考,您可以在下面的doc中详细阅读

https://docs.microsoft.com/en-us/azure/bot-service/bot-builder-prompts?view=azure-bot-service-4.0&tabs=javascript

希望能帮助到你。


0
投票
for (var i = 0; i < response.data.length; i++) {
    xyz[i] = `${response.data[i].xzyElement}`;
}

尝试以上述格式将任何元素值添加到数组中。

然后TypeError将不会发生。

© www.soinside.com 2019 - 2024. All rights reserved.