如何将视图的整个输出放入JSON对象的元素中?

时间:2011-01-18 08:01:59

标签: php json view

我的任务是在提交后保存用户的重播并更新视图,我们可以在其中查看最新的重播。为此我使用post方法

$.post(url, dataString, function(data) {               
    if(data.error_message != '') $(".forum_replay").html(data.content); 
    // some thing
},"json");

在控制器中,如果没有错误,我将保存数据。然后我想更新视图

$content = $this->load->view( $this->config->item('View_forum_replies') );
$json_data = array('error_message' => $message,
                   '$content'      => $content);
echo json_encode($json_data);

1 个答案:

答案 0 :(得分:0)

你在这里有错误:

'$content'      => $content

你需要从第一部分中删除$

您可能还想更改

if(data.error_message != '')

if(data.error_message == '')