• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C#下拉列表多级联动MVCAPI

原作者: [db:作者] 来自: [db:来源] 收藏 邀请
create table City
(
 Id int identity, 
 Name varchar(30),
 Pid int ,
 )

 MVC显示页面

@{
    ViewBag.Title = "Index";
}
@using MVC.Models;
<h2>Index</h2>
<div >
    <select onchange="BandNext(this)">
        <option value="-1">--请选择--</option>
        @foreach (City item in ViewBag.Xiala as List<City>)
        {
            <option value="@item.Id">@item.Name</option>
        }
    </select>

</div>

<script>
    function BandNext(obj) {
        var Pid = $(obj).val();
        $(obj).nextAll().remove();
        if (Pid ==-1) {
            return;
        }
        $.ajax({
            url: "https://localhost:44372/API/API?Pid=" + Pid,
            //dataType: "json",
            type: "get",
            success: function (d) {
                var sel = '<select onchange="BandNext(this)"> '
                sel += '<option value="-1">--请选择--</option> '
                $(d).each(function () {
                    sel += ' <option value="' + this.Id + '">'+this.Name+'</option>'
                })
                sel += '</select>';
                $("#sel").append(sel);
            }
        })
    }
</script>

 MVC 后台

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using MVC.Models;
using Newtonsoft.Json;
namespace MVC.Controllers
{
    public class MVCController : Controller
    {
        HttpClientHelper helper = new HttpClientHelper("https://localhost:44372/API/API/");
        // GET: MVC
        public ActionResult Index()
        {
            string json = helper.Get("GetShow?Pid=0");
            ViewBag.Xiala = JsonConvert.DeserializeObject<List<City>>(json);
           
            return View();
        }
    }
}

 API 代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;
using System.Data.SqlClient;
using Dapper;
using System.Data;
using API.Models;

namespace API.Controllers
{
    public class APIController : ApiController
    {
        public List<City> GetShow(int Pid = 0)
        {
            using (IDbConnection conn = new SqlConnection("Data Source=.;Initial Catalog=x1rk16;Integrated Security=True"))
            {
                string sql = $"select * from City where 1=1 and Pid={Pid}";
                List<City> model = conn.Query<City>(sql).ToList();
                return model;
            }

        }
    }
}

鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#EF加密连接数据库连接字符串发布时间:2022-07-10
下一篇:
C#为程序设置全局热键/Hotkey发布时间:2022-07-10
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap