小编典典

如何在JQuery中使用JSFiddle回显功能?

json

我已经阅读了jsFiddle用户指南,了解其JSON
回显功能,但是没有运气产生一个可工作的jsFiddle来使用JQuery回显JSON消息的运气。

如何创建jsFiddle以从其指南中回显JSON:

data: {
    json: JSON.encode({
        text: 'some text',
        array: [1, 2, 'three'],
        object: {
            par1: 'another text',
            par2: [3, 2, 'one'],
            par3: {}
        }
    }),
    delay: 3
}

我从未使用过的Mootools提供了一个示例。因此,从mootools示例到JQuery的简单转换就足够了。


阅读 223

收藏
2020-07-27

共1个答案

小编典典

var data = {
        json: $.toJSON({
            text: 'some text',
            array: [1, 2, 'three'],
            object: {
                par1: 'another text',
                par2: [3, 2, 'one'],
                par3: {}
            }
        }),
        delay: 3
}


$.ajax({
    url:"/echo/json/",
    data:data,
    type:"POST",
    success:function(response)
    {
       console.log(response);
    }
});

现场演示

注意我添加了一个额外的资源.. jquery-json

在View上使用FireBug控制台进行演示
(无需拉起开发人员控制台即可看到收益)

2020-07-27