我正在尝试使用DialogFlow履行指标index.js文件中的node.js创建一个具有3列和一行的表,以在Google Assistant中显示该表。但是由于我很新,所以我无法做到。任何帮助表示赞赏。
答案 0 :(得分:1)
引用Table Card。
// Simple table
conv.ask('This is a simple table example.')
conv.ask(new Table({
dividers: true,
columns: ['header 1', 'header 2', 'header 3'],
rows: [
['row 1 item 1', 'row 1 item 2', 'row 1 item 3'],
],
}))
如果您不熟悉使用Webhooks来实现,请考虑完成codelab入门。
希望这会有所帮助。