0

我正在使用 jquery ajax 发布用户名和密码并返回结果,它与 GET 方法完美配合,但使用 post 方法发送数据但不返回 html 结果,这是我的代码:

$.ajax({
    type: "POST",
    url: "panel.aspx",
    data: username + ";" + pw,
    success: function (result) {
        $("#midiv").html(result);

    }
});
4

4 回答 4

0
$.ajax({
    type: "POST",
    url: "panel.aspx",
    data: {username: username, password: pw}
}).done(function(result) {
    $("#midiv").html(result);
});

您还需要更改服务器端脚本以侦听 POST 请求而不是 GET 请求,例如在 PHP 中它将是:

$user = $_POST['username'];
$pw = $_POST['password'];

不太确定如何在 aspx 中做到这一点,但我猜你会弄清楚的?

于 2012-08-12T15:16:00.433 回答
0

尝试这个:

$.ajax({
    type: "POST",
    url: "panel.aspx",
    data: {
        username: "foo",
        pw: "bar"
    },
    success: function (result) {
        $("#midiv").html(result);
    }
});

您正在执行的方式是在 GET 请求 URL 中发送变量。要通过 post 发送数据,请在data配置中定义一个对象,其中的键代表您要发送的参数。

于 2012-08-12T15:10:40.763 回答
0

您没有正确发送数据,请尝试:

$.ajax({
    type: "POST",
    url: "panel.aspx",
    data: 'username=' + username + "&password=" + pw,
    success: function (result) {
        $("#midiv").html(result);

    }
});
于 2012-08-12T15:12:59.543 回答
0

尝试;

$.ajax({
    type: 'POST',
    url: 'panel.aspx',
    data: {
          'username=' + uname "&password=" + pword,
//Note:- uname and pword are variables and not text
          },
    success: function (result) {
        $("#midiv").html(result);

    }
});

在您的 aspx 中,您可能会捕获类似的数据;

Dim uname, pword
uname = Request.Form("username")
pword = Request.Form("password")

希望这可以帮助...

于 2012-08-12T15:26:01.070 回答