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

发布于 2024-10-12 09:47:07 字数 524 浏览 1 评论 0原文

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

$.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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如日中天 2024-10-19 09:47:07

你在这里有一个错误:

'$content'      => $content

第一部分中删除 $

你需要从你可能还想更改

if(data.error_message != '')

为的

if(data.error_message == '')

you have an error right here:

'$content'      => $content

you need to drop the $ from the first portion

you might also want to change

if(data.error_message != '')

to

if(data.error_message == '')
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文