From dbcad57e0a2804e126f68da1ea060a4cb9916ee8 Mon Sep 17 00:00:00 2001 From: mxd <838425805@qq.com> Date: Sun, 15 Mar 2020 20:21:21 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B3=A8=E9=87=8A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../spiderflow/core/executor/function/UrlFunctionExecutor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spider-flow-core/src/main/java/org/spiderflow/core/executor/function/UrlFunctionExecutor.java b/spider-flow-core/src/main/java/org/spiderflow/core/executor/function/UrlFunctionExecutor.java index fdd8334..6332ae2 100644 --- a/spider-flow-core/src/main/java/org/spiderflow/core/executor/function/UrlFunctionExecutor.java +++ b/spider-flow-core/src/main/java/org/spiderflow/core/executor/function/UrlFunctionExecutor.java @@ -25,7 +25,7 @@ public class UrlFunctionExecutor implements FunctionExecutor{ } @Comment("获取url参数") - @Example("${url.parameter('http://www.baidu.com/s?wd=spider-flow')}") + @Example("${url.parameter('http://www.baidu.com/s?wd=spider-flow','wd')}") public static String parameter(String url,String key){ return parameterMap(url).get(key); }