当使用$.ajax时:

var name = $('#txtUserName').val();

var pwd = $('#txtPassWord').val();

var param = "{username:'" + name + "',password:'" + pwd + "'}";

$.ajax({

type: "POST",

url: "/Main/DoLogin",

data: param,

contentType: "application/json;charset=utf-8",

success: function (msg)

{

var test = msg;

var test2 = test;

},

error: function (e)

{

var test = e;

var test2 = test;

}

});

当使用$.post时:

var name = $('#txtUserName').val();

var pwd = $('#txtPassWord').val();

var param = { username: name, password: pwd };

$.post('/Main/DoLogin', param, function (result) {

var test = result;

alert(test);

});

使用$.ajax时参数要写成JSON字符串的格式,使用$.post是参数要写成JSON对象的格式。

随机推荐

  1. gRPC框架

    https://blog.csdn.net/shuanger_/article/details/47281381 https://grpc.io/ gRPC是利用通讯协议是HTTP2,序列化用prot ...

  2. UGUI 用手柄或者键盘控制选择Scroll View中的游戏对象时,滚动条跟着移动

    原预制体以及脚本的下载地址:https://download.csdn.net/download/qq_15017279/10404010 1.新建一个Scroll View,删掉横向的滚动条,并且把 ...

  3. Unity string 转换为 Quaternion

    public Quaternion QuaternionParse(string name) { name = name.Replace("(", "").Re ...

  4. 数据库mysql基础语言--各模式的含义

    1. 欢迎信息 欢迎来到 MySQL 镜像.命令以 ; 或 g 结束.你的 MySQL 连接编号为 2.服务器版本:5.1.47-社区 MySQL 社区服务器(GPL) 版权(C)2000.2010, ...

  5. Linux下jdk下载

    wget --no-check-certificate --no-cookies --header "Cookie: oraclelicense=accept-securebackup-co ...

  6. 如何绘制ER图

    先画出多个实体(用长方形表示),然后是联系类型(菱形),和属性(椭圆).

  7. js-对象的方法详解

    Object.prototype 上的方法: constructor 返回创建该对象的构造函数 var arr = []; arr.constructor == function Array() { ...

  8. The seventeenth day

    A good book is a good friend 好书如挚友

  9. mint-ui popup自动关闭

    <template> <div class="hello"> <input type="text" v-model="n ...

  10. <Android 基础(十七)> ViewPager介绍

    介绍 Layout manager that allows the user to flip left and right through pages of data. You supply an i ...