我想在自己的流程中获取参数,例如http://localhost:8000/?param1=12
。
如果我想在我的应用程序中重新启用param1,我该如何在哪里进行?
谢谢。
Maxence
答案 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
组件,但是该组件捕获所有请求。 httplistener
与httproute
具有相同的属性。