当前位置:
首页 > 编程开发 > Objective-C编程 >
-
利用Attribute和反射从模板生成短信
制作者:剑锋冷月 单位:无忧统计网,www.51stat.net
根据模板生成短信,这是一个比较常见的需求。说白了,就是如何把短信模板中的关键字替换掉,变成实际的、有意义的短信。
例如短信模板如下:"[用户名],今天是[日期],[内容]",那“[用户名]”、“[日期]”、“[内容]”,就是关键字。
大家会说,这还不容易,我写个函数替换下不就行了?
public string GetMsg(string template, string userName, string date, string content)
{
return template.Replace("[用户名]", userName).Replace("[日期]", date).Replace("[内容]", content);
}
当然,这完全可以达到目的。但是如果模板很多,而且模板里面的变量也很多的时候,到时写替换的代码会不会写到手软
呢?而且还不保证会把关键字替换错呢。
所以,为了解决“替换”这个重复的而又容易出错工作, 本文提出一种解决思路:就是利用Attribute和反射从模板生成短信。
基本思路是:针对每个短信模板编写一个承载短信关键字内容的实体类,为实体类的每个属性加上Description特性
(Attribute),通过一个Helper类获取一个<关键字,值>的Dictionary,然后根据该Dictionary进行替换,得到短信。
示例实体类:
public class Message
{
[Description("[用户名]")]
public string UserName { get; set; }
[Description("[内容]")]
public string Content { get; set; }
[Description("[日期]")]
public string Date { get; set; }
}
获取Key-Value的Helper类代码:
public class SmsGeneratorHelper
{
/// <summary>
/// 从短信实体获取要替换的键值对,用以替换短信模板中的变量
/// </summary>
/// <param name="objMessage">短信实体</param>
/// <returns></returns>
public static Dictionary<string, string> GetMessageKeyValue(object objMessage)
{
Type msgType = objMessage.GetType();
Dictionary<string, string> dicMsg = new Dictionary<string, string>();
Type typeDescription = typeof(DescriptionAttribute);
PropertyInfo[] proList = msgType.GetProperties();
string strKey = string.Empty;
string strValue = string.Empty;
foreach (PropertyInfo pro in proList)
{
//利用反射取得属性的get方法。
MethodInfo m = pro.GetGetMethod();
//利用反射调用属性的get方法,取得属性的值
object rs = m.Invoke(objMessage, null);
object[] arr = pro.GetCustomAttributes(typeDescription, true);
if (!(arr.Length > 0))
{
continue;
}
DescriptionAttribute aa = (DescriptionAttribute)arr[0];
strKey = aa.Description;
dicMsg.Add(strKey, rs.ToString());
}
return dicMsg;
}
}
测试代码:
Message msg = new Message() { UserName = "张三", Content = "祝你生日快乐",Date=DateTime.Now.ToString("yyyy-MM-dd")};
Dictionary<string,string> nvc = SmsGeneratorHelper.GetMessageKeyValue(msg);
string template = "[用户名],今天是[日期],[内容]";
Console.WriteLine("模板是:{0}", template);
foreach(KeyValuePair<string,string> kvp in nvc)
{
template = template.Replace(kvp.Key, kvp.Value);
}
Console.WriteLine("替换后的内容:{0}", template);
看到了吧,结果出来了,而那段恶心的代码“template.Replace("[用户名]", userName).Replace("[日期]", date).Replace("[内容]", content)”消失了。
如果有新模板了,直接写一个模板实体类,将里面的字段贴上[Description("xxx")]标签就可以很方便生成短信了。
至于如何给模板实体类赋值(具体业务的问题),那就不是本文讨论的范围了。
获取Key-Value的Helper类代码:
public class SmsGeneratorHelper
{
/// <summary>
/// 从短信实体获取要替换的键值对,用以替换短信模板中的变量
/// </summary>
/// <param name="objMessage">短信实体</param>
/// <returns></returns>
public static Dictionary<string, string> GetMessageKeyValue(object objMessage)
{
Type msgType = objMessage.GetType();
Dictionary<string, string> dicMsg = new Dictionary<string, string>();
Type typeDescription = typeof(DescriptionAttribute);
PropertyInfo[] proList = msgType.GetProperties();
string strKey = string.Empty;
string strValue = string.Empty;
foreach (PropertyInfo pro in proList)
{
//利用反射取得属性的get方法。
MethodInfo m = pro.GetGetMethod();
//利用反射调用属性的get方法,取得属性的值
object rs = m.Invoke(objMessage, null);
object[] arr = pro.GetCustomAttributes(typeDescription, true);
if (!(arr.Length > 0))
{
continue;
}
DescriptionAttribute aa = (DescriptionAttribute)arr[0];
strKey = aa.Description;
dicMsg.Add(strKey, rs.ToString());
}
return dicMsg;
}
}
测试代码:
Message msg = new Message() { UserName = "张三", Content = "祝你生日快乐",Date=DateTime.Now.ToString("yyyy-MM-dd")};
Dictionary<string,string> nvc = SmsGeneratorHelper.GetMessageKeyValue(msg);
string template = "[用户名],今天是[日期],[内容]";
Console.WriteLine("模板是:{0}", template);
foreach(KeyValuePair<string,string> kvp in nvc)
{
template = template.Replace(kvp.Key, kvp.Value);
}
Console.WriteLine("替换后的内容:{0}", template);
看到了吧,结果出来了,而那段恶心的代码“template.Replace("[用户名]", userName).Replace("[日期]", date).Replace("[内容]", content)”消失了。
如果有新模板了,直接写一个模板实体类,将里面的字段贴上[Description("xxx")]标签就可以很方便生成短信了。
至于如何给模板实体类赋值(具体业务的问题),那就不是本文讨论的范围了。
根据模板生成短信,这是一个比较常见的需求。说白了,就是如何把短信模板中的关键字替换掉,变成实际的、有意义的短信。
例如短信模板如下:"[用户名],今天是[日期],[内容]",那“[用户名]”、“[日期]”、“[内容]”,就是关键字。
大家会说,这还不容易,我写个函数替换下不就行了?
public string GetMsg(string template, string userName, string date, string content)
{
return template.Replace("[用户名]", userName).Replace("[日期]", date).Replace("[内容]", content);
}
当然,这完全可以达到目的。但是如果模板很多,而且模板里面的变量也很多的时候,到时写替换的代码会不会写到手软
呢?而且还不保证会把关键字替换错呢。
所以,为了解决“替换”这个重复的而又容易出错工作, 本文提出一种解决思路:就是利用Attribute和反射从模板生成短信。
基本思路是:针对每个短信模板编写一个承载短信关键字内容的实体类,为实体类的每个属性加上Description特性
(Attribute),通过一个Helper类获取一个<关键字,值>的Dictionary,然后根据该Dictionary进行替换,得到短信。
示例实体类:
public class Message
{
[Description("[用户名]")]
public string UserName { get; set; }
[Description("[内容]")]
public string Content { get; set; }
[Description("[日期]")]
public string Date { get; set; }
}
获取Key-Value的Helper类代码:
public class SmsGeneratorHelper
{
/// <summary>
/// 从短信实体获取要替换的键值对,用以替换短信模板中的变量
/// </summary>
/// <param name="objMessage">短信实体</param>
/// <returns></returns>
public static Dictionary<string, string> GetMessageKeyValue(object objMessage)
{
Type msgType = objMessage.GetType();
Dictionary<string, string> dicMsg = new Dictionary<string, string>();
Type typeDescription = typeof(DescriptionAttribute);
PropertyInfo[] proList = msgType.GetProperties();
string strKey = string.Empty;
string strValue = string.Empty;
foreach (PropertyInfo pro in proList)
{
//利用反射取得属性的get方法。
MethodInfo m = pro.GetGetMethod();
//利用反射调用属性的get方法,取得属性的值
object rs = m.Invoke(objMessage, null);
object[] arr = pro.GetCustomAttributes(typeDescription, true);
if (!(arr.Length > 0))
{
continue;
}
DescriptionAttribute aa = (DescriptionAttribute)arr[0];
strKey = aa.Description;
dicMsg.Add(strKey, rs.ToString());
}
return dicMsg;
}
}
测试代码:
Message msg = new Message() { UserName = "张三", Content = "祝你生日快乐",Date=DateTime.Now.ToString("yyyy-MM-dd")};
Dictionary<string,string> nvc = SmsGeneratorHelper.GetMessageKeyValue(msg);
string template = "[用户名],今天是[日期],[内容]";
Console.WriteLine("模板是:{0}", template);
foreach(KeyValuePair<string,string> kvp in nvc)
{
template = template.Replace(kvp.Key, kvp.Value);
}
Console.WriteLine("替换后的内容:{0}", template);
看到了吧,结果出来了,而那段恶心的代码“template.Replace("[用户名]", userName).Replace("[日期]", date).Replace("[内容]", content)”消失了。
如果有新模板了,直接写一个模板实体类,将里面的字段贴上[Description("xxx")]标签就可以很方便生成短信了。
至于如何给模板实体类赋值(具体业务的问题),那就不是本文讨论的范围了。
获取Key-Value的Helper类代码:
public class SmsGeneratorHelper
{
/// <summary>
/// 从短信实体获取要替换的键值对,用以替换短信模板中的变量
/// </summary>
/// <param name="objMessage">短信实体</param>
/// <returns></returns>
public static Dictionary<string, string> GetMessageKeyValue(object objMessage)
{
Type msgType = objMessage.GetType();
Dictionary<string, string> dicMsg = new Dictionary<string, string>();
Type typeDescription = typeof(DescriptionAttribute);
PropertyInfo[] proList = msgType.GetProperties();
string strKey = string.Empty;
string strValue = string.Empty;
foreach (PropertyInfo pro in proList)
{
//利用反射取得属性的get方法。
MethodInfo m = pro.GetGetMethod();
//利用反射调用属性的get方法,取得属性的值
object rs = m.Invoke(objMessage, null);
object[] arr = pro.GetCustomAttributes(typeDescription, true);
if (!(arr.Length > 0))
{
continue;
}
DescriptionAttribute aa = (DescriptionAttribute)arr[0];
strKey = aa.Description;
dicMsg.Add(strKey, rs.ToString());
}
return dicMsg;
}
}
测试代码:
Message msg = new Message() { UserName = "张三", Content = "祝你生日快乐",Date=DateTime.Now.ToString("yyyy-MM-dd")};
Dictionary<string,string> nvc = SmsGeneratorHelper.GetMessageKeyValue(msg);
string template = "[用户名],今天是[日期],[内容]";
Console.WriteLine("模板是:{0}", template);
foreach(KeyValuePair<string,string> kvp in nvc)
{
template = template.Replace(kvp.Key, kvp.Value);
}
Console.WriteLine("替换后的内容:{0}", template);
看到了吧,结果出来了,而那段恶心的代码“template.Replace("[用户名]", userName).Replace("[日期]", date).Replace("[内容]", content)”消失了。
如果有新模板了,直接写一个模板实体类,将里面的字段贴上[Description("xxx")]标签就可以很方便生成短信了。
至于如何给模板实体类赋值(具体业务的问题),那就不是本文讨论的范围了。
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
关于JS定时器的整理
JS中使用Promise.all控制所有的异步请求都完
js中字符串的方法
import-local执行流程与node模块路径解析流程
检测数据类型的四种方法
js中数组的方法,32种方法
前端操作方法
数据类型
window.localStorage.setItem 和 localStorage.setIte
如何完美解决前端数字计算精度丢失与数