WTM_LayUI 二级联动
Posted cfss
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WTM_LayUI 二级联动相关的知识,希望对你有一定的参考价值。
cshtml页面:
1 <wt:combobox field="Entity.ServicenameCodeID" items="AllServicenameCodes" link-field="@Model.AllshippingmethodsID" trigger-url="/ChannelApiInfor/GetServicenameIDByshippingmethod" /> 2 <wt:combobox field="@Model.AllshippingmethodsID" items="Allshippingmethods" multi-select="true" />
控制器方法:
1 [ActionDescription("级联")] 2 public IActionResult GetServicenameIDByshippingmethod(Guid id) 3 { 4 var vm= DC.Set<ShippingMethod>().Where(c => c.ServicenameCodeID == id).Select(m=> new { Text=m.cnname,Value=m.ID}).ToList(); 5 6 return Json(vm); 7 }
另外可以参照一下图片:
以上是关于WTM_LayUI 二级联动的主要内容,如果未能解决你的问题,请参考以下文章