In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
In this issue, the editor will bring you about the message management of the development of Wechat public platform in ASP.NET. The article is rich in content and analyzes and describes for you from a professional point of view. I hope you can get something after reading this article.
Mind map
Use mind maps to analyze and express some models:
Table structure
According to the mind map, the tables we can build can be three tables: message table, rule table, and type table.
Message tables: actual messages
Rule table: text, picture and text, voice, etc.
Type table: text, picture and text, voice (default reply, subscription reply)
It can also be two tables: regulation table, message table (+ one type field)
I only design one table here: message table (+ one rule field + one type field)
The design of table structure has something to do with personal habits. I still like simple things. Don't design them for the sake of design, which will only increase the complexity of the system.
CREATE TABLE [dbo]. [WC_MessageResponse] ([Id] [varchar] (50) NOT NULL,-- primary key [OfficalAccountId] [varchar] (50) NULL,-- official account [MessageRule] [int] NULL,-- message rules (enumeration) [Category] [int] NULL,-- type (enumeration) [MatchKey] [varchar] (1000) NULL,-- keyword [TextContent] [varchar] (max) NULL -- text content [ImgTextContext] [varchar] (max) NULL,-- Picture text content [ImgTextUrl] [varchar] (1000) NULL,-- Picture URL [ImgTextLink] [varchar] (1000) NULL,-- Picture hyperlink [MeidaUrl] [varchar] (1000) NULL,-- Voice URL [MeidaLink] [varchar] (1000) NULL,-- Voice hyperlink [Enable] [bit] NOT NULL. -- whether to enable [IsDefault] [bit] NOT NULL,-- whether to default [Remark] [varchar] (2000) NULL,-- description [Sort] [int] NOT NULL,-- sort [CreateTime] [datetime] NOT NULL,-- creation time [CreateBy] [varchar] (50) NOT NULL,-- founder [ModifyTime] [datetime] NOT NULL,-- modification time [ModifyBy] [varchar] (50) NULL -- modified CONSTRAINT [PK_WC_MessageResponse] PRIMARY KEY CLUSTERED ([Id] ASC) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON) ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY] GOSET ANSI_PADDING OFFGOALTER TABLE [dbo]. [WC_MessageResponse] WITH CHECK ADD CONSTRAINT [FK_WC_MessageResponse_WC_OfficalAcconts] FOREIGN KEY ([OfficalAccountId]) REFERENCES [dbo]. [WC_OfficalAccounts] ([Id]) ON DELETE CASCADEGOALTER TABLE [dbo]. [WC_MessageResponse] CHECK CONSTRAINT [FK_WC_MessageResponse_WC_OfficalAcconts] GO
The table corresponds to two enumerated and associated master tables managed by official accounts
CREATE TABLE [dbo]. [WC_OfficalAccounts] ([Id] [varchar] (50) NOT NULL,-- main key [OfficalId] [varchar] (200) NULL,-- unique ID [OfficalName] [varchar] (200) NOT NULL of official account,-- official account name [OfficalCode] [varchar] (200) NOT NULL,-- official account [OfficalPhoto] [varchar] (1000) NULL,-- profile image [OfficalKey] [varchar] (1000) NULL. -- EncodingAESKey [ApiUrl] [varchar] (1000) NULL,-- our resource server [Token] [varchar] (200) NULL,-- Token [AppId] [varchar] (200) NULL,-- AppId [AppSecret] [varchar] (200) NULL,-- Appsecret [AccessToken] [varchar] (2000) NULL,-- visit Token [Remark] [varchar] (2000) NULL,-- description [Enable] [bit] NOT NULL -- whether to enable [IsDefault] [bit] NOT NULL,-- whether it is the current default operation number [Category] [int] NOT NULL,-- category (media number) Enterprise number, personal number Development test number) [CreateTime] [datetime] NOT NULL,-- creation time [CreateBy] [varchar] (50) NOT NULL,-creator [ModifyTime] [datetime] NOT NULL,-- modification time [ModifyBy] [varchar] (50) NULL,-- modifier CONSTRAINT [PK_WC_OfficalAcconts] PRIMARY KEY CLUSTERED ([Id] ASC) WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]) ON [PRIMARY]
Corresponding enumeration
Public enum WeChatReplyCategory {/ / text Text = 1, / / Picture and text Image = 2, / / Voice Voice = 3, / / equivalent, used to reply keyword Equal=4, / / included, used to reply keyword Contain = 5} public enum WeChatRequestRuleEnum {/ default reply Unprocessed / Default = 0, / follow reply / Subscriber = 1, / text reply / Text = 2, / picture reply / Image = 3, / voice reply / Voice = 4, / video reply / Video = 5 / hyperlink reply / Link = 6, / LBS location reply / Location = 7,}
Enumerations actually correspond to the other two tables that I saved.
At this point, I believe the design of the watch is very clear.
Background code
Additions, deletions, modifications and queries are very common. The main focus is on the front end. The front end processing the submitted message must include rules and types to specify the final expression of the message.
Controller
[HttpPost] [SupportFilter (ActionName = "Edit")] public JsonResult PostData (WC_MessageResponseModel model) {WC_OfficalAccountsModel accountModel = account_BLL.GetCurrentAccount (); if (string.IsNullOrEmpty (model.Id)) {model.Id = ResultHelper.NewId;} model.CreateBy = GetUserId (); model.CreateTime = ResultHelper.NowTime; model.ModifyBy = GetUserId (); model.ModifyTime = ResultHelper.NowTime; model.OfficalAccountId = accountModel.Id; model.Enable = true; model.IsDefault = true If (m_BLL.PostData (ref errors, model)) {LogHandler.WriteServiceLog (GetUserId (), "Id" + model.Id + ", OfficalAccountId" + model.OfficalAccountId, "success", "Save", "WC_MessageResponse"); return Json (JsonHandler.CreateMessage (1, Resource.SaveSucceed));} else {string ErrorCol = errors.Error LogHandler.WriteServiceLog (GetUserId (), "Id" + model.Id + ", OfficalAccountId" + model.OfficalAccountId + "," + ErrorCol, "failure", "Save", "WC_MessageResponse"); return Json (JsonHandler.CreateMessage (0, Resource.SaveFail + ErrorCol));}}
BLL
Public bool PostData (ref ValidationErrors errors, WC_MessageResponseModel model) {try {WC_MessageResponse entity = new WC_MessageResponse (); if (IsExists (model.Id)) {entity = m_Rep.GetById (model.Id);} entity.Id = model.Id; entity.OfficalAccountId = model.OfficalAccountId; entity.MessageRule = model.MessageRule; entity.Category = model.Category; entity.MatchKey = model.MatchKey; entity.TextContent = model.TextContent; entity.ImgTextContext = model.ImgTextContext; entity.ImgTextUrl = model.ImgTextUrl Entity.ImgTextLink = model.ImgTextLink; entity.MeidaUrl = model.MeidaUrl; entity.Enable = model.Enable; entity.IsDefault = model.IsDefault; entity.Remark = model.Remark; entity.CreateTime = model.CreateTime; entity.CreateBy = model.CreateBy; entity.Sort = model.Sort; entity.ModifyTime = model.ModifyTime; entity.ModifyBy = model.ModifyBy; if (m_Rep.PostData (entity)) {return true;} else {errors.Add (Resource.NoDataChange); return false }} catch (Exception ex) {errors.Add (ex.Message); ExceptionHander.WriteException (ex); return false;}}
DAL
Public bool PostData (WC_MessageResponse model) {/ / if all switches are off, prove that reply if is not enabled (model.Category = = null) {return true;} / / all set to no default ExecuteSqlCommand (string.Format ("update [dbo]. [WC_MessageResponse] set IsDefault=0 where OfficalAccountId ='{0} 'and MessageRule= {1}", model.OfficalAccountId, model.MessageRule) / / default reply and subscription reply, and do not deal with graphics and text separately, because they have three modes But only one is the default if (model. Model.MessageRule = (int) WeChatReplyCategory.Image & & (model.MessageRule = = (int) WeChatRequestRuleEnum.Default | | model.MessageRule = = (int) WeChatRequestRuleEnum.Subscriber) {/ / check whether the database has data var entity = Context.WC_MessageResponse.Where (p = > p.OfficalAccountId = = model.OfficalAccountId & & p.MessageRule = = model.MessageRule & & p.Category = = model.Category). FirstOrDefault () If (entity! = null) {/ / delete the original Context.WC_MessageResponse.Remove (entity);}} / / set all to the default ExecuteSqlCommand (string.Format ("update [dbo]. [WC_MessageResponse] set IsDefault=1 where OfficalAccountId ='{0} 'and MessageRule= {1} and Category= {2}", model.OfficalAccountId, model.MessageRule,model.Category)); / / modify if (IsExist (model.Id)) {Context.Entry (model). State = EntityState.Modified Return Edit (model);} else {return Create (model);}}
It is necessary for the DAL layer to explain
There are three types of default reply and follow reply: text, picture and text, and voice (but there can only be one, so there is an IsDefault field to indicate which reply to execute), so these two rules must be dealt with separately, and you can see the SQL statement executed by the DAL code.
So let's design the front end as much as we can!
How to design the front end?
Let's take a look at a mind map:
Front-end complete code
.formtable td {vertical-align: top; padding: 10px;} .formtable th {text-align: left; padding: 10px; height: 30px;} .formtablenormal {width: 500px;} .formtablenormal th {border: 0px; text-align: right;} .formtablenormal td {border: 0px; vertical-align: middle;} / / 1 text 2 Picture 3 Voice var Category = {Text: 1, Image: 2, Voice: 3, Equal: 4, Contain: 5} / var RequestRule = {Default: 0, Subscriber: 1, Text: 2, Image: 3, Voice: 4, Video: 5, Link: 6, Location: 7}; function initDefault () {$('# swText0'). Switchbutton ({onChange: function (checked) {if (checked) {$('# swImage0'). Switchbutton ("uncheck"); $('# swVoice0'). Switchbutton ("uncheck"); $("# div01"). Show () $("# div02,#div03"). Hide (); $("# Category") .val (Category.Text);}}); $('# swImage0'). Switchbutton ({onChange: function (checked) {if (checked) {$('# swVoice0'). Switchbutton ("uncheck"); $('# swText0'). Switchbutton ("uncheck"); $("# div02"). Show (); $("# div01,#div03"). Hide () $("# Category") .val (Category.Image); $("# List0") .datagrid ("resize");}); $('# swVoice0') .switchbutton ({onChange: function (checked) {if (checked) {$('# swImage0'). Switchbutton ("uncheck"); $('# swText0'). Switchbutton ("uncheck"); $("# div03"). Show (); $("# div01,#div02"). Hide () $("# Category") .val (Category.Voice);}}); / / text $.post ('@ Url.Action ("GetList")', {page: 1, rows: 1, category: Category.Text, messageRule: RequestRule.Default}, function (data) {var rows = data.rows; for (var I = 0; I)
< rows.length; i++) { if (rows[i].Category == Category.Text) { $("#Text0").val(rows[i].TextContent); if (rows[i].IsDefault) { $('#swText0').switchbutton("check"); $('#swImage0').switchbutton("uncheck"); $('#swVoice0').switchbutton("uncheck"); } } } }); //语音 $.post('@Url.Action("GetList")', { page: 1, rows: 1, category: Category.Voice, messageRule: RequestRule.Default }, function (data) { var rows = data.rows; for (var i = 0; i < rows.length; i++) { if (rows[i].Category == Category.Voice) { $("#VoiceTitle0").val(rows[i].TextContent); $("#VoiceContent0").val(rows[i].Remark); $("#VoiceUrl0").val(rows[i].MeidaUrl); if (rows[i].IsDefault) { $('#swVoice0').switchbutton("check"); $('#swText0').switchbutton("uncheck"); $('#swImage0').switchbutton("uncheck"); } } } }); $('#List0').datagrid({ url: '@Url.Action("GetList")?messageRule=' + RequestRule.Default + '&category=' + Category.Image, width: SetGridWidthSub(40), methord: 'post', height: SetGridHeightSub(175), fitColumns: true, sortName: 'Sort', sortOrder: 'asc', idField: 'Id', pageSize: 15, pageList: [15, 20, 30, 40, 50], pagination: true, striped: true, //奇偶行是否区分 singleSelect: true, onLoadSuccess: function (data) { if (data.rows.length >0) {if (data.rows [0] .IsDefault) {$('# swImage0') .switchbutton ("check"); $('# swText0') .switchbutton ("uncheck"); $('# swVoice0') .switchbutton ("uncheck"); $("# Category") .val (Category.Image) }, / / radio mode / / rownumbers: true,// line number columns: [{field: 'Id', title:' Id', width: 80, hidden: true}, {field: 'TextContent', title:' title', width: 80, sortable: true}, {field: 'ImgTextUrl', title:' picture', width: 50, sortable: true, align: 'center' Formatter: function (value) {return "
"}}, {field: 'ImgTextLink', title:' hyperlink', width: 80, sortable: true}, {field: 'ImgTextContext', title:' reply content, width: 180, sortable: true},]]}) $("# btnCreate02"). Unbind (). Click (function () {$("# modalwindow0"). Window ({title:'@ Resource.Create', width: 700, height: 500, iconCls:'fa fa-plus'}). Window ('open');}); $("# btnSava01") .unbind () .click (function () {/ / default reply $("# MessageRule") .val (RequestRule.Default)) If ($.trim ($("# Text0") .val ()) = "") {$.messager.alert ('@ Resource.Tip', 'must be filled in!' , 'warning'); return;} $("# TextContent") .val ($.trim ($("# Text0") .val () If ($("# form"). Valid () {$.ajax ({url: "@ Url.Action (" PostData ")", type: "Post", data: $("# form"). Serialize (), dataType: "json", success: function (data) {$.messageBox5s ('@ Resource.Tip', data.message);}});}) $("# btnSava02") .unbind () .click (function () {if ($.trim ($("# ImageTitle0"). Val ()) = "") {$.messager.alert ('@ Resource.Tip', 'title must be filled in!' , 'warning'); return;} if ($.trim ($("# ImageUrl0"). Val ()) = "") {$.messager.alert (' @ Resource.Tip', 'picture must be uploaded!' , 'warning'); return;} if ($.trim ($("# Sort0"). Val ()) = "") {$.messager.alert (' @ Resource.Tip', 'sort must be filled in!' , 'warning'); return;} / / reply to $("# MessageRule") .val (RequestRule.Default); $("# TextContent"). Val ($("# ImageTitle0"). Val ()); $("# ImgTextUrl"). Val ($("# ImageUrl0"). Val ()); $("# ImgTextContext"). Val ($("# ImageContent0"). Val (); $("# ImgTextLink"). Val ($("# ImageLink0"). Val ()) $("# Sort"). Val ($("# Sort0"). Val (); if ($("# form"). Valid ()) {$.ajax ({url: "@ Url.Action (" PostData "), type:" Post ", data: $(" # form "). Serialize (), dataType:" json ", success: function (data) {if (data.type = 1) {$(" # Id "). Val (") $("# List0"). Datagrid ('reload'); $("# modalwindow0"). Window (' close'); $("# ImageTitle0"). Val (""); $("# form02 img"). Attr ("src", "/ Content/Images/NotPic.jpg"); $("# ImageContent0"). Val ("); $(" # ImageLink0 "). Val ("); $(" # Sort0 "). Val (0) $('# FileUpload02'). Val ('');} $.messageBox5s ('@ Resource.Tip', data.message);}});}}); $("# btnSava03") .unbind () .click (function () {/ / default reply $("# MessageRule") .val (RequestRule.Default)) If ($.trim ($("# Text0"). Val ()) = "") {if ($.trim ($("# VoiceTitle0"). Val ()) = "") {$.messager.alert ('@ Resource.Tip', 'title must be filled in!' , 'warning'); return;} if ($.trim ($("# VoiceUrl0"). Val ()) = "") {$.messager.alert (' @ Resource.Tip', 'voice must be uploaded!' , 'warning'); return;} $("# TextContent"). Val ($("# VoiceTitle0"). Val (); $("# MeidaUrl"). Val ($("# VoiceUrl0"). Val ()); $("# Remark"). Val ($("# VoiceContent0"). Val ()) } if ($("# form"). Valid () {$.ajax ({url: "@ Url.Action (" PostData ")", type: "Post", data: $("# form"). Serialize (), dataType: "json", success: function (data) {$.messageBox5s ('@ Resource.Tip', data.message);}});}) } function initSubscriber () {$('# swText1') .switchbutton ({onChange: function (checked) {if (checked) {$('# swImage1'). Switchbutton ("uncheck"); $('# swVoice1'). Switchbutton ("uncheck"); $("# div11"). Show (); $("# div12,#div13"). Hide (); $("# Category") .val (Category.Text);}}) Switchbutton ({onChange: function (checked) {if (checked) {$('# swVoice1'). Switchbutton ("uncheck"); $('# swText1'). Switchbutton ("uncheck"); $("# div12"). Show (); $("# div11,#div13"). Hide (); $("# Category") .val (Category.Image); $("# List1"). Datagrid ("resize");}})) Switchbutton ({onChange: function (checked) {if (checked) {$('# swImage1'). Switchbutton ("uncheck"); $('# swText1'). Switchbutton ("uncheck"); $("# div13"). Show (); $("# div11,#div12") .hide (); $("# Category") .val (Category.Voice);}) / / text $.post ('@ Url.Action ("GetList")', {page: 1, rows: 1, category: Category.Text, messageRule: RequestRule.Subscriber}, function (data) {var rows = data.rows; for (var I = 0; I)
< rows.length; i++) { if (rows[i].Category == Category.Text) { $("#Text1").val(rows[i].TextContent); if (rows[i].IsDefault) { $('#swText1').switchbutton("check"); $('#swImage1').switchbutton("uncheck"); $('#swVoice1').switchbutton("uncheck"); } } } }); //语音 $.post('@Url.Action("GetList")', { page: 1, rows: 1, category: Category.Voice, messageRule: RequestRule.Subscriber }, function (data) { var rows = data.rows; for (var i = 0; i < rows.length; i++) { if (rows[i].Category == Category.Voice) { $("#VoiceTitle1").val(rows[i].TextContent); $("#VoiceContent1").val(rows[i].Remark); if (rows[i].IsDefault) { $('#swVoice1').switchbutton("check"); $('#swText1').switchbutton("uncheck"); $('#swImage1').switchbutton("uncheck"); } } } }); $('#List1').datagrid({ url: '@Url.Action("GetList")?messageRule=' + RequestRule.Subscriber + '&category=' + Category.Image, width: SetGridWidthSub(40), methord: 'post', height: SetGridHeightSub(175), fitColumns: true, sortName: 'Sort', sortOrder: 'asc', idField: 'Id', pageSize: 15, pageList: [15, 20, 30, 40, 50], pagination: true, striped: true, //奇偶行是否区分 singleSelect: true, onLoadSuccess: function (data) { if (data.rows.length >0) {if (data.rows [0] .IsDefault) {$('# swImage1') .switchbutton ("check"); $('# swText1') .switchbutton ("uncheck"); $('# swVoice1') .switchbutton ("uncheck") }, / / radio mode / / rownumbers: true,// line number columns: [{field: 'Id', title:' Id', width: 80, hidden: true}, {field: 'TextContent', title:' title', width: 80, sortable: true}, {field: 'ImgTextUrl', title:' picture', width: 50, sortable: true, align: 'center' Formatter: function (value) {return "
"}}, {field: 'ImgTextLink', title:' hyperlink', width: 80, sortable: true}, {field: 'ImgTextContext', title:' reply content', width: 180, sortable: true}, {field: 'Sort', title:' sort, width: 50, sortable: true},]]}) Switchbutton ({onChange: function (checked) {if (checked) {$("# Category") .val (Category.Equal);} else {$("# Category") .val (Category.Contain);}) $("# btnCreate3") .unbind () .click (function () {$("# modalwindow3") .window ({title:'@ Resource.Create', width: 700,550, iconCls:'fa fa-plus'}) .window ('open');}) $("# btnSava3") .unbind () .click (function () {if ($.trim ($("# ImageTitle3"). Val ()) = "") {$.messager.alert ('@ Resource.Tip', 'title must be filled in!' , 'warning'); return;} if ($.trim ($("# TextMatchKey3"). Val ()) = "") {$.messager.alert (' @ Resource.Tip', 'keyword must be filled in!' , 'warning'); return;} if ($.trim ($("# ImageUrl3"). Val ()) = "") {$.messager.alert (' @ Resource.Tip', 'picture must be uploaded!' , 'warning'); return;} / / reply to $("# MessageRule") .val (RequestRule.Image); $("# MatchKey") .val ($.trim ($("# TextMatchKey3"). Val ()); $("# TextContent"). Val ($("# ImageTitle3"). Val ()); $("# ImgTextUrl"). Val ($("# ImageUrl3"). Val ()) $("# ImgTextContext"). Val ($("# ImageContent3"). Val (); $("# ImgTextLink"). Val ($("# ImageLink3"). Val ()); $("# Sort"). Val ($("# Sort3"). Val ()) If ($("# form"). Valid () {$.ajax ({url: "@ Url.Action (" PostData ")", type: "Post", data: $("# form"). Serialize (), dataType: "json", success: function (data) {if (data.type = 1) {$("# Id") .val ("); $(" # List3 "). Datagrid ('reload') $("# List31"). Datagrid ('reload'); $("# modalwindow3"). Window (' close'); $("# ImageTitle3"). Val (""); $("# form3 img"). Attr ("src", "/ Content/Images/NotPic.jpg"); $("# ImageContent3"). Val ("); $(" # ImageLink3 "). Val ("); $(" # Sort3 "). Val (0) $('# FileUpload3'). Val (''); $("# TextMatchKey3"). Val ('');} $.messageBox5s ('@ Resource.Tip', data.message);}});}});} function initVoice () {$("# Category") .val (Category.Equal) Datagrid ({url:'@ Url.Action ("GetList")? messageRule=' + RequestRule.Voice, width: SetGridWidthSub (40), methord: 'post', height: SetGridHeightSub (100), fitColumns: true, sortName:' CreateTime', sortOrder: 'desc', idField:' Id', pageSize: 15, pageList: [15, 20, 30, 40, 50], pagination: true, striped: true, / / whether parity lines distinguish singleSelect: true / / Radio mode / / rownumbers: true,// line number columns: [{field: 'Id', title:' Id', width: 80, hidden: true}, {field: 'Category', title:' Category', width: 80, sortable: true, hidden: true}, {field: 'TextContent', title:' title', width: 80, sortable: true}, {field: 'MatchKey' Title: 'keywords', width: 80, sortable: true, formatter: function (value,row,index) {if (row.Category = = Category.Equal) {return "(exact match)" + value} else {return "(fuzzy match)" + value}, {field: 'MeidaUrl', title:' voice', width: 80, sortable: true, align: 'center', formatter: function (value) {return "
"}}, {field: 'ImgTextLink', title:' hyperlink', width: 80, sortable: true}, {field: 'ImgTextContext', title:' reply content', width: 80, sortable: true},]]}); $('# swMessageRule4'). Switchbutton ({onChange: function (checked) {if (checked) {$(" # Category ") .val (Category.Equal) } else {$("# Category") .val (Category.Contain);}}); $("# btnCreate4") .unbind () .click (function () {$("# modalwindow4") .window ({title:'@ Resource.Create', width: 700,500, iconCls:'fa fa-plus'}) .window ('open');}) $("# btnSava4") .unbind () .click (function () {if ($.trim ($("# VoiceTitle4"). Val ()) = "") {$.messager.alert ('@ Resource.Tip', 'title must be filled in!' , 'warning'); return;} if ($.trim ($("# TextMatchKey4"). Val ()) = "") {$.messager.alert (' @ Resource.Tip', 'keyword must be filled in!' , 'warning'); return;} if ($.trim ($("# VoiceUrl4"). Val ()) = "") {$.messager.alert (' @ Resource.Tip', 'voice must be uploaded!' , 'warning'); return;} / / reply to $("# MessageRule") .val (RequestRule.Voice); $("# MatchKey"). Val ($("# TextMatchKey4"). Val ()); $("# TextContent"). Val ($("# VoiceTitle4"). Val ()); $("# MeidaUrl"). Val ($("# VoiceUrl4"). Val (); $("# Remark"). Val ($("# VoiceContent4"). Val ()) If ($("# form"). Valid () {$.ajax ({url: "@ Url.Action (" PostData ")", type: "Post", data: $("# form"). Serialize (), dataType: "json", success: function (data) {if (data.type = 1) {$("# Id") .val ("); $(" # List4 "). Datagrid ('reload') $("# modalwindow4"). Window ('close'); $("# TextMatchKey4"). Val (""); $("# VoiceTitle4"). Val (""); $("# VoiceUrl4"). Val (""); $("# VoiceContent4"). Val (""); $("# FileUpload4"). Val (""); $("# form3 img"). Attr ("src", "/ Content/Images/NotPic.jpg") } $.messageBox5s ('@ Resource.Tip', data.message);}});}});} $(function () {$('# tt'). Tabs ({justified: true, width: '100% boxes, height: $(window). Height ()-20}); $(' # tt'). Tabs ({onSelect: function (title, index) {switch (index) {case RequestRule.Default: initDefault (); break; Case RequestRule.Subscriber: initSubscriber (); break; case RequestRule.Text: initText (); break; case RequestRule.Image: initImage (); break; case RequestRule.Voice: initVoice (); break;}}); / / initialize the first tag initDefault (); / / automatic width height $(window) .resize (function () {$('# tt'). Tabs ({height:$ (window). Height ()-20}) / / $('# List2'). Datagrid ('resize', {/ / width: SetGridWidthSub (40), / / height: SetGridHeightSub (100) / /}); $(function () {$(' input.textbox'). Validatebox (). Bind ('blur', function () {$(this) .validatebox (' enableValidation'). Validatebox ('validate');}) }) text: @ Html.SwitchButtonByEdit ("swText0", false) Picture: @ Html.SwitchButtonByEdit ("swImage0", false) Voice: @ Html.SwitchButtonByEdit ("swVoice0", false) official account: @ ViewBag.CurrentOfficalAcount @ Html.ToolButton ("btnSava01", "fa fa-plus", "submit and Save", ref perm) "Edit", false) @ Html.ToolButton ("btnCreate02", "fa fa-search", "add reply", ref perm, "Edit", false) @ Html.ToolButton ("btnSava02", "fa fa-search", "submit Save", ref perm, "Edit", false) title: picture:
@ Resource.Browse @ Resource.Uploading description: text: @ Html.SwitchButtonByEdit ("swText1", false) Picture: @ Html.SwitchButtonByEdit ("swImage1", false) Voice: @ Html.SwitchButtonByEdit ("swVoice1", false) official account: @ ViewBag.CurrentOfficalAcount @ Html.ToolButton ("btnSava11") "fa fa-plus", "submit Save", ref perm, "Edit", false) @ Html.ToolButton ("btnCreate12", "fa fa-search", "add reply", ref perm, "Edit", false) @ Html.ToolButton ("btnEdit12", "fa fa-search", "Edit", ref perm, "Edit", true) @ Html.ToolButton ("btnDelete12", "fa fa-search", "Delete", ref perm) "Delete", false) @ Html.ToolButton ("btnSava12", "fa fa-search", "submit and save", ref perm, "Edit", false) title: picture:
Resource.Browse @ Resource.Uploading description: @ Html.ToolButton ("btnCreate2", "fa fa-search", "add reply", ref perm, "Edit", true) @ Html.ToolButton ("btnEdit2", "fa fa-search", "Edit", ref perm, "Edit", true) @ Html.ToolButton ("btnDelete2", "fa fa-search", "delete", ref perm) "Delete", false) current operation official account: @ ViewBag.CurrentOfficalAcount @ Html.ToolButton ("btnSava2", "fa fa-search", "submit and save", ref perm, "Edit", false) current operation official account: @ ViewBag.CurrentOfficalAcount keyword: rule: @ Html.SwitchButtonByEdit ("swMessageRule2", true) Content: @ Html.ToolButton ("btnCreate3", "fa fa-search", "add reply", ref perm, "Edit", true) @ Html.ToolButton ("btnEdit3", "fa fa-search", "edit") Ref perm, "Edit", true) @ Html.ToolButton ("btnDelete3", "fa fa-search", "delete", ref perm, "Delete", false) current operation official number: @ ViewBag.CurrentOfficalAcount @ Html.ToolButton ("btnSava3", "fa fa-search", "submit and save", ref perm, "Edit") False) current operation official account: @ ViewBag.CurrentOfficalAcount title: keyword: rule: @ Html.SwitchButtonByEdit ("swMessageRule3", true, "fuzzy match (keyword contains content)", "exact match (content and keyword match)", "280") picture:
@ Resource.Browse @ Resource.Uploading description: @ *
Use the front-end mind map to quickly understand the front-end code and apply it to practice
Summary
Message management is a very skillful thing.
1. Message in the case of no task reply, we should enable the default reply, otherwise the user will not get a response and lose the experience.
two。 The design of keywords is generally a link and a link, which has a guiding effect.
For example:
Keyword: (I want) reply: press 1 to join to get a gift, press 2 to get 50 yuan directly
Keywords: (1) reply: press 3 to get Tieguanyin tea, press 4 to get Pu'er tea
Keyword: (3 or 4) reply: please reply to your address and phone number and the recipient
In this way, we will get a complete dialogue between the system and the user, and of course we have to deal with the last information of the user.
This is what the message management developed by Wechat public platform in ASP.NET is like. If you happen to have similar doubts, please refer to the above analysis to understand. If you want to know more about it, you are welcome to follow the industry information channel.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.