zoukankan      html  css  js  c++  java
  • MVC4.0

    --后台ajax传值

    <script type="text/javascript">
         $(document).ready(function dianZan(id,dianZan){
             $.ajax({
                 url :"Home/DianZan",
                 type:"post",    //数据发送方式
                 async: false,
                 data:{"id":id,"dianZan":dianZan},
                 dataType:"json",   //接受数据格式          
                 error: function(){
                     alert("服务器没有返回数据,可能服务器忙,请重试");
                 },       
                 success: function () {
                     alert("点赞成功!");
                 }
             });                  
         });
    </script>

    .cshtml:

       <a href="javascript:dianZan(@item.Id,@item.DianZan)">点赞</a>

    后台Action:

       public ActionResult DianZan(string id, string dianZan)
            {
                var model = new ViewModels
                {
                    users = new Common.Model.Users(),
                    bbsInfo = new Common.Model.BbsInfo(),
                    userBbs = new Common.Model.UserBbs(),
                    userBbsItem = new Common.Model.UserBbsItem()
                };
                if (Request.Cookies["name"] == null || Request.Cookies["name"].Value == "")
                {
                    return RedirectToAction("Contact", "Home");
                }
                string name = Request.Cookies["name"].Value;
                DataTable list = new Common.BLL.UsersBLL().GetUserId(name);
                int userId = int.Parse(list.Rows[0].ItemArray[0].ToString());
                if (userId > 0)
                {
                    new Common.BLL.BbsInfoBLL().DianZan(int.Parse(id), int.Parse(dianZan));
                    new Common.BLL.UserBbsBLL().AddDianZan(userId, int.Parse(id));
                }
                return RedirectToAction("Index", "Home");
            }

  • 相关阅读:
    在python3.7下怎么安装matplotlib与numpy
    kNN(从文本文件中解析数据)
    k-近邻算法(kNN)笔记
    第二章--k-近邻算法(kNN)
    C++学习笔记一 —— 两个类文件互相引用的处理情况
    (转) C++中基类和派生类之间的同名函数的重载问题
    初试 Matlab 之去除水印
    (转) linux之sort用法
    vim 简单配置
    hdu 5358 First One
  • 原文地址:https://www.cnblogs.com/zhangjinpeng/p/4249824.html
Copyright © 2011-2022 走看看