我正在实施http://sendy.co和Betakit,并且几乎试图通过AJAX进行POST,并传递一些值。
根据Sendy API这里我应该可以订阅,但我正在努力让它与AJAX一起工作。使用下面的代码我尝试在提交/点击时变为GET:
$.ajax({
type: "POST",
url:"http://example.com/subscribe",
dataType: "jsonp",
data: {email: email,
list: 'Pasdsadasdasdada'},
});
};
如何进行POST而不是GET?
答案 0 :(得分:1)
请试试这个
$.post("/subscribe", {email: email, list: 'PtCA7hgiZuZucMCQGFLrcA'});
由于