在 v3 中,处理程序已注册app.setHandler
app.setHandler({
LAUNCH() {
return this.toIntent('HelloWorldIntent');
},
HelloWorldIntent() {
this.ask('Hello World! What\'s your name?', 'Please tell me your name.');
},
MyNameIsIntent() {
this.tell('Hey ' + this.$inputs.name.value + ', nice to meet you!');
},
在 v4 中(如果我还不太了解)会自动向装饰器注册吗?但是这种机制是如何在幕后运作的呢?有人可以从技术上解释我吗?