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

创建的网址是这样的:

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

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

我怎样才能做到这一点?

4

1 回答 1

0

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

于 2013-09-16T08:02:25.497 回答