将json数据传递到标头中的服务器

时间:2013-09-16 07:55:05

标签: json jquery

function userCanLogin(credentials) {
  return $.getJSON(root + '/json/reply/authentication', credentials);
            }

创建的网址是:

www.mydomain.com/?username=test&password=test

我希望将这些json凭据传递给标头。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

首先,您希望在发送到服务器时发布数据,而不是GET。其次,在发布问题之前尝试搜索,这是您需要的: jQuery Posting JSON