博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[Asp.net core]封装Layer ui checkbox 为taghelper
阅读量:6032 次
发布时间:2019-06-20

本文共 4419 字,大约阅读时间需要 14 分钟。

摘要

在使用checkbox,为其绑定值的时候,有些麻烦,就想着能不能用taghelper将其封装一下。直接上demo。

一个例子

using Microsoft.AspNetCore.Mvc.Rendering;using Microsoft.AspNetCore.Razor.TagHelpers;using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace LayUI.TagHelpersDemo.TagHelpers{    public class CheckBoxTagHelper : TagHelper    {        public List
Items { set; get; } = new List
(); public string Name { set; get; } = Guid.NewGuid().ToString(); public override void Process(TagHelperContext context, TagHelperOutput output) { output.TagName = "checkbox"; if (Items != null && Items.Count > 0) { for (int i = 0; i < Items.Count; i++) { var checkbox = new TagBuilder("input"); checkbox.TagRenderMode = TagRenderMode.SelfClosing; var item = Items[i]; checkbox.Attributes.Add("id", item.Id); checkbox.Attributes.Add("name", Name); if (item.Checked) { checkbox.Attributes.Add("checked", "checked"); } if (item.Disabled) { checkbox.Attributes.Add("disabled", "disabled"); } checkbox.Attributes.Add("type", "checkbox"); checkbox.Attributes.Add("value", item.Value); checkbox.Attributes.Add("title", item.Text); output.Content.AppendHtml(checkbox); } } base.Process(context, output); } }}

CheckBoxItem

using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;namespace LayUI.TagHelpersDemo.TagHelpers{    ///     /// 复选框项    ///     public class CheckBoxItem    {        ///         /// 复选框id        ///         public string Id { set; get; } = Guid.NewGuid().ToString();        ///         /// 复选框值        ///         public string Value { set; get; }        ///         /// 复选框文本内容        ///         public string Text { set; get; }        ///         /// 是否选中        ///         public bool Checked { set; get; }        ///         /// 是否可用        ///         public bool Disabled { set; get; }    }}

在_ViewImports.cshtml引入自定义taghelper

@using LayUI.TagHelpersDemo@using LayUI.TagHelpersDemo.Models@addTagHelper *, Microsoft.AspNetCore.Mvc.TagHelpers@tagHelperPrefix wf:@addTagHelper LayUI.TagHelpersDemo.*,LayUI.TagHelpersDemo

使用

using System;using System.Collections.Generic;using System.Diagnostics;using System.Linq;using System.Threading.Tasks;using Microsoft.AspNetCore.Mvc;using LayUI.TagHelpersDemo.Models;using LayUI.TagHelpersDemo.TagHelpers;namespace LayUI.TagHelpersDemo.Controllers{    public class HomeController : Controller    {        public IActionResult Index()        {            return View();        }        public IActionResult About()        {            ViewData["Message"] = "Your application description page.";            return View();        }        public IActionResult Contact()        {            ViewData["Message"] = "Your contact page.";            return View();        }        public IActionResult Test()        {            List
items = new List
{ new CheckBoxItem{ Id=Guid.NewGuid().ToString(), Value =Guid.NewGuid().ToString(), Text="篮球" }, new CheckBoxItem{ Id=Guid.NewGuid().ToString(), Value=Guid.NewGuid().ToString(), Text="足球" }, new CheckBoxItem{ Id=Guid.NewGuid().ToString(), Value=Guid.NewGuid().ToString(), Text="美女" } }; return View(items); } public string Post() { return Request.Form["interest"]; } public IActionResult Error() { return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier }); } }}

 

@{    Layout = null;}@model List
Test

测试

提交之后,获取每项ID

f7be9e8d-31a2-4206-a3c3-fc5e391c1629,607849ae-d1fa-4007-9e0d-9faaf10c8f1f

总结

一些常用的控件,可以通过taghelper对其进行封装一下,使用起来更方便。

转载地址:http://gydhx.baihongyu.com/

你可能感兴趣的文章
cx_Oracle install
查看>>
jquery ajax从后台获取数据
查看>>
Nginx下载服务生产服务器调优
查看>>
移动互联网,入口生死战
查看>>
nginx面试常问题目
查看>>
制作ubuntu系统u盘镜像,以及安装
查看>>
JAVA多线程深度解析
查看>>
Kafka High Level Consumer 会丢失消息
查看>>
时间轴
查看>>
java 获取系统当前时间的方法
查看>>
Ubuntu 10.04升级git 到1.7.2或更高的可行方法
查看>>
Spring Security4实战与原理分析视频课程( 扩展+自定义)
查看>>
消息队列服务器 memcacheq的搭建
查看>>
VMware Horizon View 7.5 虚拟桌面实施咨询与购买--软件硬件解决方案
查看>>
RabbitMQ如何保证队列里的消息99.99%被消费?
查看>>
第一周博客作业
查看>>
thinkpython2
查看>>
String、StringBuffer和StringBuilder的区别
查看>>
oracle recyclebin与flashback drop
查看>>
svmlight使用说明
查看>>