视觉模板是否基于条件呈现?
例如 component.html 基于参数渲染
如果参数一存在
<div data-sly-use.myComponent="${'com.myproject.service' @ param1='one''}">
${myComponent.calculatedValue}
</div>
如果参数二存在
<div data-sly-use.myComponent="${'com.myproject.service' @ param2='one''}"">
${myComponent.calculatedValue}
</div>
如果参数不存在
<div data-sly-use.myComponent="${'com.myproject.MyComponent'}">
${myComponent.calculatedValue}
</div>
问题 2:如何获取 param1='one' 值(来自 javascript 或 jsp)
问题3:是否可以对这个值 ${myComponent.calculatedValue} 做字符串操作