Google号码精灵上的操作 - 未定义助手

时间:2017-09-10 18:29:10

标签: node.js actions-on-google

我正在尝试来自https://developers.google.com/actions/apiai/tutorials/number-genie的数字精灵示例,并且在运行代码时出现以下错误。这是测试你的行动的部分。如果我发表评论,那么就可以了。

^(\d{1,2}M\s*)?(\d{1,2}d\s*)?(\d{1,2}h\s*)?(\d{1,2}m)?$

任何帮助表示感谢。

1 个答案:

答案 0 :(得分:0)

您确定要运行整个代码吗?

从教程中我可以看到助手在本节中定义:

    app.post('/', function (request, response) {
  console.log('headers: ' + JSON.stringify(request.headers));
  console.log('body: ' + JSON.stringify(request.body));

  const assistant = new Assistant({request: request, response: response});
  response.sendStatus(200); // OK
});

因此使用此变量的代码也应该在此块中。希望能帮助到你。