Package com.alibaba.citrus.turbine.util

Examples of com.alibaba.citrus.turbine.util.ControlTool.render()


        Context context = rundata.getContext();
        ControlTool controlTool = getControlTool(context, template, module, rundata);

        // render control
        rundata.getResponse().getWriter(); // 必须先预备好buffer
        String content = controlTool.render();

        // 设置context,以便后续模块能够读取
        context.put("controlContent", content); // controlContent为control渲染的结果
        context.put("controlTarget", template != null ? template : module);
View Full Code Here


        Context context = rundata.getContext();
        ControlTool controlTool = getControlTool(context, template, module, rundata);

        // render control
        rundata.getResponse().getWriter(); // ������Ԥ����buffer
        String content = controlTool.render();

        // ����context���Ա����ģ���ܹ���ȡ
        context.put("controlContent", content); // controlContentΪcontrol��Ⱦ�Ľ��
        context.put("controlTarget", template != null ? template : module);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.