2

我正在使用rythmengine

我想要的输出是:x=prefix:value没有任何空格。

@def test(String param){
@{param="prefix:"+param} @param
}
1
2  x=@test("value")
3

输出是:2 x= prefix:value

@def test(String param){
@{param="prefix:"+param}@param
}
1
2  x=@test("value")
3

输出是:2 x=param

这似乎是一个错误。有谁知道解决方案或解决方法?

4

1 回答 1

0

在http://fiddle.rythmengine.org/#/editor上尝试以下代码:

@def test(String param){ @{param="prefix:"+param}@@param } 1 2 x=@test("value") 3

于 2015-05-22T12:33:42.603 回答