如何将视图的整个输出放入 JSON 对象的元素中?
我的任务是保存用户提交后的重播并更新视图,我们可以在其中看到最新的重播。为此,我
$.post(url, dataString, function(data) {
if(data.error_message != '') $(".forum_replay").html(data.content);
// some thing
},"json");
在控制器中使用 post 方法,如果没有错误,我将保存数据。然后我想更新视图
$content = $this->load->view( $this->config->item('View_forum_replies') );
$json_data = array('error_message' => $message,
'$content' => $content);
echo json_encode($json_data);
My task is to save replay of user once submited and update the view, where we can see latest replay. for this i am using post method
$.post(url, dataString, function(data) {
if(data.error_message != '') $(".forum_replay").html(data.content);
// some thing
},"json");
In controller, i am saving data if there is no error.and then i want to update the view
$content = $this->load->view( $this->config->item('View_forum_replies') );
$json_data = array('error_message' => $message,
'$content' => $content);
echo json_encode($json_data);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在这里有一个错误:
第一部分中删除 $
你需要从你可能还想更改
为的
you have an error right here:
you need to drop the $ from the first portion
you might also want to change
to