noShampoo

Results 1 issues of noShampoo

### 背景 在表达式使用的过程中,我们经常会通过表达式从上下文中进行取值。例如: ```java JSONObject context = new JSONObject(); JSONObject result = new JSONObject(); Map featureMap = Maps.newHashMap(); featureMap.put("f1", "1L"); result.put("featureMap", featureMap); context.put("result", result); ``` 有一个context作为上下文,需要取其featureMap的f1字段值,我们的表达式会写成 ```shell ## $=context $.result.featureMap.f1...