0

我正在尝试在服务器上保存多个图像。让我们从头开始:

//I use this function for testing
function testSave(){
    $this->_renderChart(156);
}

//This function takes chart_id as a parameter to render a proper chart.
function _renderChart($chart_id = null){
    if(!$chart_id)
        return false;
    $chartFilterList = $this->getChartFilterListFromId($chart_id);
    $this->loadChartFromId($chart_id, $chartFilterList);
    $this->layout = 'analytics\chart_one.ctp';
}

上述函数的视图包含渲染图表所需的所有脚本。这是将渲染图表转换为 base64string 并保存的部分:

//../views/layouts/analytics/chart_one.ctp
<script type="text/javascript">
    $(document).ready(function(){
        saveChartAsImage('#chart1');
    });
</script>

以及上述函数的主体:

function saveChartAsImage(div){
    var base64string = $(div).jqplotToImageStr();
    $.ajax({
        url: 'saveImage',
        type: "POST",
        dataType: "html",
        data:"data=" + base64string
    });
}

}

这甚至还没有接近工作。我在这里做错了吗?

4

2 回答 2

0

我建议创建一个行为,并添加操作beforeValidate()
之后,为调用特定操作(在您的问题中列出)设置必要的条件。

例子:

app/Model/Behavior/ChartBehavior.php
class ChartBehavior extends ModelBehavior {

// if necessary, create a setup action
public function setup(Model $Model, $settings = array()) {  }

public function upload(Model $Model) {
    // use the $Model->data to see all information from your form
    debug($Mode->data);

    // now call your functions below to upload
}

public function line_chart($chart_id = null){
    //magic...
}

public function bar_chart($chart_id = null){
    //magic...
}

public function pie_chart($chart_id = null){
    //magic...
}

我希望它对你有帮助。

于 2012-12-26T16:46:42.110 回答
0

如果这些函数是控制器动作,您可以$this->response->body()在控制器的afterFilter()回调中使用来获取响应内容并将其保存到文件中。如果这些是辅助函数,您可以使用辅助函数获取内容afterLayout()afterRender()回调$this->_View->Blocks->get('content');

于 2012-12-25T12:39:23.023 回答