<input type="button" id="updateInfo" value="更改货载重量" />
<div id="updateDiv" style="display:none;">
<input type="hidden" value="@Model.ContainerCode" id="containercode"/>
新毛重:<input type="text" id="nmz" />
新重量:<input type="text" id="nzl" />
新件数:<input type="text" id="njs" />
<input type="button" id="submit" value="提交" />
</div>

也是刚接触不久,代码中可能有一些不足之处,今天写下,以后自己可能不需要去上网查找相关的东西。

这个是VIEW中的代码,

<script type="text/javascript">
$(document).ready(function () { $("#updateInfo").click(function () {
$("#nmz").attr("value","")
$("#nzl").attr("value", "");
$("#njs").attr("value", "");//调试的时候,刷新界面INPUT内的值会保留。所以这里需要清空INPUT
$("#updateDiv").show(); }); $("#submit").click(function () {
var containercode = $("#containercode").val();
var nmz = $("#nmz").val();
var nzl = $("#nzl").val();
var njs = $("#njs").val(); $.ajax({
type: "POST",
url: "/UnitLoads/updateHeight",
data: {
containerCode: containercode,
mz: nmz,
zl: nzl,
js: njs
},
dataType: "JSON",
success: function (result) { if (result.toString() == "0") {
alert("未能成功!请检查输入!!");
}
else {
alert("更改成功!");
document.location.reload();//重新加载当前页面
} }
}); }); });
</script>

后台方法代码如下:

      [HttpPost]
public int updateHeight(string containerCode, string mz, string zl, string js)//对应AJAX中的DATA中的变量
{ if (string.IsNullOrEmpty(containerCode) || string.IsNullOrEmpty(mz) || string.IsNullOrEmpty(zl) || string.IsNullOrEmpty(js))
{
return ;//返回给前台来判断操作是否成功
}
CommandHelper.DoCommand(context =>
{
WmsRepositories repositories = new WmsRepositories(context);
UnitLoad temp = repositories.UnitLoadRepository.GetCurrentUnitLoadByContainerCode(containerCode);
temp.Meide.mz = Decimal.Parse(mz); foreach (var item in temp.Items)
{
item.Meide.zl = Decimal.Parse(zl);
item.Meide.js = int.Parse(zl);
} });
return ;
}

以上的代码主要的意义是让自己知道前台怎么向后天传递多个数据,已经后台怎么向前台传数据。当然现在向前台传递的数据比较简单,就一个INT类型的。

下面的代码是前台向前台传递多个数据,并且后天也向前台传递多个数据的代码,

前台:

  $.ajax({
type: "POST", url: "/NewOrder/getMaterialDetail",
data: {
a: 1,
b: 2,
c: "cccc"
},
dataType: "JSON",
success: function (result) { alert(result.a);
alert(result.b);
alert(result.c); $("#details").append(result);
}
});

后台:

        public class xxx
{
public int a { get; set; }
public int b { get; set; }
public string c { get; set; }
} [HttpPost]
public ActionResult getMaterialDetail(xxx x)
{
string json = Newtonsoft.Json.JsonConvert.SerializeObject(x);
return Content(json);
}

jquery ajax 后台和前台数据交互 C#的更多相关文章

  1. jquery ajax后台向前台传list 前台用jquery $.each遍历list

    $.ajax({ type: 'post', url: xxx.action', dataType: 'text', success: function(data){ var dataObj=eval ...

  2. ASP.Net WebAPI与Ajax进行跨域数据交互时Cookies数据的传递

    前言 最近公司项目进行架构调整,由原来的三层架构改进升级到微服务架构(准确的说是服务化,还没完全做到微的程度,颗粒度没那么细),遵循RESTFull规范,使前后端完全分离,实现大前端思想.由于是初次尝 ...

  3. ASP.Net中关于WebAPI与Ajax进行跨域数据交互时Cookies数据的传递

    本文主要介绍了ASP.Net WebAPI与Ajax进行跨域数据交互时Cookies数据传递的相关知识.具有很好的参考价值.下面跟着小编一起来看下吧 前言 最近公司项目进行架构调整,由原来的三层架构改 ...

  4. jquery ajax中 php前台后台文件中编辑都是uft-8,返回数据还是乱码

    jquery ajax中 前台后台文件中编辑都是uft-8,返回数据还是乱码 解决如下: 在后台处理文件里面需要再加编辑 header("Content-Type:text/html;cha ...

  5. 简单的后台数据和前台数据交互.net

    最近忙着做POS项目,心血来来潮写了点小项目. 更具要求是随机显示数据并且产生的数据是可以控制的.前台交互显示能够倒叙,切每次只显示一条,页面不能超过20条超过的部分做删除. 我先展示一下前台的代码, ...

  6. 详谈 Jquery Ajax 异步处理Json数据.

    啥叫异步,啥叫Ajax.咱不谈啥XMLHTTPRequest.通俗讲异步就是前台页面javascript能调用后台方法.这样就达到了无刷新.所谓的Ajax.这里我们讲二种方法 方法一:(微软有自带Aj ...

  7. jQuery Ajax异步处理Json数据详解

    先我们来看一个官方的实例使用 AJAX 请求来获得 JSON 数据,并输出结果: $("button").click(function(){ $.getJSON("dem ...

  8. EChats+Ajax之柱状图的数据交互

    原文链接:https://blog.csdn.net/qq_37936542/article/details/79723710 一:下载 echarts.min.js 选择完整版进行下载,精简版和常用 ...

  9. jquery ajax获取和解析数据

    最近项目中用到了ajax技术,之前虽然写过一点点,但是没有系统的总结过.趁着刚刚用过,手热就记录一下,方便以后查阅. $.ajax中的参数 $.ajax的函数格式: $.ajax({ type: 'P ...

随机推荐

  1. webSocket vnc rfb

  2. 第二百六十天 how can I 坚持

    晚上去看了个电影,<万万没想到>,挺好看的,豆瓣评分不高.网络啊. 互联网会让聪明的人越来越聪明. 明天去看寻龙诀了. 懒惰会生根发芽,哈哈. 睡觉了.

  3. App Extension编程指南(iOS8/OS X v10.10)中文版

    http://www.cocoachina.com/ios/20141023/10027.html 当iOS 8.0和OS X v10.10发布后,一个全新的概念出现在我们眼前,那就是应用扩展.顾名思 ...

  4. ZOJ 3903 Ant(数学,推公示+乘法逆元)

    Ant Time Limit: 1 Second      Memory Limit: 32768 KB There is an ant named Alice. Alice likes going ...

  5. codeforces 630F Selection of Personnel(组合数)

    F. Selection of Personnel time limit per test 0.5 seconds memory limit per test 64 megabytes input s ...

  6. [iOS基础控件 - 6.12.3] @property属性 strong weak copy

    A.概念 @property 的修饰词   strong: 强指针/强引用(iOS6及之前是retain) weak: 弱智真/弱引用(iOS6及之前是assign)   默认情况所有指针都是强指针 ...

  7. Oracle & Sun

    2010s January 27, 2010: Oracle acquires Sun Microsystems.

  8. Windows Server2008 R2 MVC 环境配置

    *:first-child { margin-top: 0 !important; } body>*:last-child { margin-bottom: 0 !important; } /* ...

  9. JqueryMobile- 搭建主模板

    最近公司要开发手机端的,可是我没学过安卓,然后用HTML5+JQUERYMOBILE也可以做这些手机端的程序,做成个网页,发到网上,免强也行,于是开始了我JQUERYMOBILE的学习. 先放一下主模 ...

  10. 从gitbook将书籍导入到github中

    gitbook自己的导出工具经常出问题,可直接使用git. 从gitbook中clone下书 $ git clone https://git.gitbook.com/username/name_of_ ...