Ajax数据发布出错

时间:2018-01-09 12:31:51

标签: php json ajax

我看到一个表单从数据库加载数据,我解码所有形式的ajax代码,但当我在表单中看到一个新的东西。我不知道这是什么意思。请提供我的图片了解更多详情。

代码看起来像那样。

$.ajax({
    dataType: "json",
    type: "POST",
    url: "/user/setting/template-action",
    data: {
        _act: "load",
        _tname: tempname,
        _json : $.now() //Here i don't know what is the use of $.now() and how post and verify same value into my php code HOW...!
    }
});

$。now()如何验证PHP代码中的相同值 Image is here

1 个答案:

答案 0 :(得分:0)

根据Jquery的文档$ .now是一个包含unix时间戳的整数。

http://api.jquery.com/jquery.now/

在php中,此值表示为time();