我正在使用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
这似乎是一个错误。有没有人知道解决方案或解决方法?
答案 0 :(得分:0)
在http://fiddle.rythmengine.org/#/editor上尝试以下代码:
@def test(String param){
@{param="prefix:"+param}@@param
}
1
2 x=@test("value")
3