Ajax 返回 JSON 实现吗?

发布于 2024-11-02 19:20:32 字数 761 浏览 0 评论 0原文

我有一个 codeigniter 应用程序,我正在对其进行一些更改。

我要做的第一个更改是允许管理员用户通过管理面板下订单,他们通过杂志、展览等接收订单。

因此,我将一个表单链接到一个 ajax 请求,从数据库中提取项目信息,然后然后将其编码为 JSON,然后将其返回到我的视图。

我遇到的问题是以良好的格式向用户显示它。

理想情况下,我想展示的是,

date.name  
data.price
data.description

我需要用表单向他们展示这些详细信息,因为他们将在表单字段中输入数量,但我需要动态生成此信息和 HTML,这可能吗?或者我最好构建一个视图,然后通过 ajax 返回该视图?

我当前的ajax请求,

            $.ajax({
            url     : '<?php echo current_url(); ?>',
            data    : "txtKeywords="+$("#txtKeywords").val()+"&search=Search For Item",
            type    : 'POST',
            dataType: 'JSON',
            success : function(data)
            {
                //alert(data);
            }
        });

I have a codeigniter application, and I am making some changes to it.

The first change I am doing is to allow admin users to place orders through the admin panel, where they have receieved orders through magazines, exhibitions etc.

So I have linked a form up an ajax request the pulls the item info back from the database and then encodes it into JSON and then returns it to my view.

What I am having trouble with is display this to the user in nice format.

Ideally I want to show,

date.name  
data.price
data.description

I need to show them these details with a form as they are going to enter a quantity into a form field but I need to generate this information and HTML on the fly, is this possible? Or would I be best building a view and then returning that via ajax?

My current ajax request,

            $.ajax({
            url     : '<?php echo current_url(); ?>',
            data    : "txtKeywords="+$("#txtKeywords").val()+"&search=Search For Item",
            type    : 'POST',
            dataType: 'JSON',
            success : function(data)
            {
                //alert(data);
            }
        });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

柳絮泡泡 2024-11-09 19:20:32

将视图添加到您的页面,如下所示:

<script id="view" type="text/html">
    <div>
        <p>Name: {{name}}</p>
        <p>Price: {{price}}</p>
        <p>Description: {{description}}</p>
    </div>
<script>

将 Mustache 和 Mustache jquery 插件添加到您的页面: https:// github.com/janl/mustache.js/

现在,在成功回调中,您所做的

function(data) {
    var template = $("#view").html();
    var view = $.mustache( template, data );
    $("body").append( view );
}

就是这样。 Mustache 使用 json 调用返回的数据渲染视图,然后代码将其附加到正文。

Add the view to your page like this:

<script id="view" type="text/html">
    <div>
        <p>Name: {{name}}</p>
        <p>Price: {{price}}</p>
        <p>Description: {{description}}</p>
    </div>
<script>

Add mustache and the mustache jquery plugin to your page: https://github.com/janl/mustache.js/

Now in the success callback you do

function(data) {
    var template = $("#view").html();
    var view = $.mustache( template, data );
    $("body").append( view );
}

That's it. Mustache renders the view with the data returned by the json call and then the code appends it to the body.

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