function userCanLogin(credentials) {
return $.getJSON(root + '/json/reply/authentication', credentials);
}
创建的网址是这样的:
www.mydomain.com/?username=test&password=test
我希望将这些 json 凭据传递给标头。
我怎样才能做到这一点?
首先,您要在发送到服务器时发布数据,而不是 GET。其次,在发布问题之前尝试搜索,这是您需要的: jQuery Posting JSON