在totalJS流中获取参数?

时间:2019-03-06 09:34:46

标签: flow total.js

我想在自己的流程中获取参数,例如http://localhost:8000/?param1=12

如果我想在我的应用程序中重新启用param1,我该如何在哪里进行?

谢谢。

Maxence

1 个答案:

答案 0 :(得分:0)

  • 安装httproute组件
  • 编辑路由选项,添加端点,例如/endpoint/ +选中respond automatically
  • 添加code组件并与HTTP route一起加入
  • code中,您可以使用:
// now can get a value from query arguments
value.query.param1

// Performs next proccessing
send(0, value);

或者您可以使用httplistener组件,但是该组件捕获所有请求。 httplistenerhttproute具有相同的属性。