Views
You can enter view
What are views?
Views are reusable handlers. You can create a view and call it at any time. View can send messages using the Answer class. For example, you can create your bot's menu using views
Create view
View is a simple function that has a name in format NameView. To create view, just export function
View function takes argument: Answer class
View function must have a name in NameView format
menu.view.ts
Call view
At first, you need to use view, import it to views
field in your module file
app.module.ts
Then you can call it using .view
answer method
.view answer method takes argument: view id, e.g. for MenuView class it will be 'menu'. If you try to enter a view with haven't id, you will get an error
app.controller.ts
Last updated