如何将变量从 Botframework Composer 传递到自定义操作?

How to pass variable from Botframework Composer to custom action?

我想将来自用户输入的值传递给自定义操作。该值存储在 user.age 属性 中,但在作曲家自定义操作的参数字段中您不能输入变量名称,输入字段只接受 int

如何将 user.age 传递给 MultiplyDialog 自定义操作?

I tried the MultiplyDialog example

MultiplyDialog.schema

  ...
  "arg1": {
             "$ref": "schema:#/definitions/integerExpression",
             "title": "Arg1",
             "description": "Value from callers memory to use as arg 1"
       }
  ...

这里是如何从用户那里获取值的步骤(如果使用“user.age”也应该有效)