SNF快速開發平臺MVC-EasyUI3.9之-WebApi和MVC-controller層接收的json字符串的取值方法和調用後臺服務方法

最近項目組不少人問我,從前臺頁面傳到後臺controller控制層或者WebApi 時如何取值和運算操做。html

今天就都你們一個在框架內一個取值技巧前端

前臺JS調用代碼:ajax

一、下面是選中一行數據後右鍵點擊時把行數據轉換成json傳到後臺api中。spring

//生成左表數據(規則)
                this.createRuleLeftTable=function(){
                    var row = self.grid.datagrid('getSelected');
                    if (!row) return snf.message('warning', self.resx.noneSelect);
                    var index = self.grid.datagrid('getRowIndex', row);
                    //數據提交
                    snf.ajax({
                        url: '/api/DEMO/DemoSingleTable/CreateRuleLeftTable',
                        data: ko.toJSON(row),
                        success: function (d) {
                            snf.messageif(d.msgtype != '', d.msgtype, d.msg); 
                        }
                    });
                }

 二、下面代碼是api寫的代碼,接到數據後 SNFRequest.GetIsJTokenValue(data.Code) 用這個關鍵方法取json裏的元素。數據庫

  取到json裏的數據以後,就能夠進行運算和操做了。關於服務層有多少方法都須要什麼參數均可以進行組裝了。這樣處理的場景和需求就變得靈活了。json

[System.Web.Http.HttpPost]
        public dynamic CreateLeftTable(dynamic data)
        {
            if (data != null)
            { 
                DemoMultiLeftTableEntity entity = new DemoMultiLeftTableEntity();
                entity.Code = SNFRequest.GetIsJTokenValue(data.Code);
                entity.Name = SNFRequest.GetIsJTokenValue(data.Name);
                entity.Description = SNFRequest.GetIsJTokenValue(data.Description);
                string statusCode, statusMessage;

                string result = SNFService.Instance.CreateService<DemoMultiLeftTableService, IDemoMultiLeftTableService>().Add(this.UserInfo, entity, out statusCode, out statusMessage);
                if (!string.IsNullOrEmpty(result))
                {
                    //成功提示 
                    return ShowWarning(AppMessage.MSG0011);
                }
                else
                {
                    return ShowErrorWarning(AppMessage.MSG3020 + statusMessage);
                }

            }

            return ShowErrorWarning("參數不對!");

        }

 

-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------api

做者: 王金斗
出處: http://www.cnblogs.com/spring_wang/
Email: spring_best@yeah.net
QQ:903639067 
QQ羣:322581894

 這個系列教程文檔,歡迎轉載:跨域

SNF快速開發平臺WinForm-CS甘特圖http://www.cnblogs.com/spring_wang/p/7418423.html服務器

SNF快速開發平臺MVC-審覈流,審覈完成後會給下一個審覈人發郵件,下一個審覈人能夠不登陸系統,在郵件裏進行審覈處理http://www.cnblogs.com/spring_wang/p/7418402.htmlmvc

SNF快速開發平臺MVC-名片管理(實際名片樣式) http://www.cnblogs.com/spring_wang/p/7416540.html

SNF快速開發平臺MVC-表格單元格合併組件http://www.cnblogs.com/spring_wang/p/7416368.html

SNF快速開發平臺MVC-單據狀態水印http://www.cnblogs.com/spring_wang/p/7416349.html

SNF快速開發平臺MVC-瀑布式分頁組件http://www.cnblogs.com/spring_wang/p/7411116.html

SNF快速開發平臺MVC-高級查詢組件http://www.cnblogs.com/spring_wang/p/7411113.html

SNF快速開發平臺MVC-自由排序組件http://www.cnblogs.com/spring_wang/p/7411090.html

SNF快速開發平臺MVC-各類級聯綁定方式,演示樣例程序(包含表單和表格控件)http://www.cnblogs.com/spring_wang/p/7405371.html

SNF快速開發平臺MVC-集成了百度開源項目echarshttp://www.cnblogs.com/spring_wang/p/7405171.html

SNF快速開發平臺WinForm-平板拍照及掃描二維碼功能http://www.cnblogs.com/spring_wang/p/7404600.html

SNF快速開發平臺WinForm規則引擎總體介紹及使用http://www.cnblogs.com/spring_wang/p/7404182.html

SNF快速開發平臺WinForm-Grid表格控件大全http://www.cnblogs.com/spring_wang/p/7403881.html

SNF快速開發平臺WinForm-表單驗證控件-通用http://www.cnblogs.com/spring_wang/p/7403750.html

SNF.CodeGenerator-升級生成BS頁面代碼-支持視圖-數據庫配置-快速開發者的利器http://www.cnblogs.com/spring_wang/p/7402612.html

SNF快速開發平臺WinForm-審覈流使用方法樣例http://www.cnblogs.com/spring_wang/p/7374176.html

SNF快速開發平臺WinForm-EasyQuery統計分析-效果-很是牛逼的報表查詢工具http://www.cnblogs.com/spring_wang/p/7366059.html

SNF快速開發平臺MVC-Grid++集成打印http://www.cnblogs.com/spring_wang/p/7365567.html

SNF快速開發平臺MVC-富文本控件集成了百度開源項目editorhttp://www.cnblogs.com/spring_wang/p/7365265.html

C#按回車Enter使輸入焦點自動跳到下一個TextBox的方法收集http://www.cnblogs.com/spring_wang/p/7216538.html

關於系統前端開發的那些事http://www.cnblogs.com/spring_wang/p/7092721.html

WebApi和MVC-controller層接收的json字符串的取值方法和調用後臺服務方法http://www.cnblogs.com/spring_wang/p/6740314.html

SNF快速開發平臺--規則引擎在程序當中如何調用http://www.cnblogs.com/spring_wang/p/6740490.html

SNF快速開發平臺--規則引擎介紹和使用文檔http://www.cnblogs.com/spring_wang/p/6740445.html

SNF快速開發平臺MVC-EasyUI3.9之-DataGrid表格控件如何增長右鍵菜單http://www.cnblogs.com/spring_wang/p/6740338.html

SNF快速開發平臺--多組織+多平臺+多系統處理方案http://www.cnblogs.com/spring_wang/p/6734654.html

SNF快速開發平臺MVC-EasyUI3.9之-Session過時處理和頁面請求篩選http://www.cnblogs.com/spring_wang/p/6733975.html

SNF快速開發平臺MVC-EasyUI3.9之-WebApi身份驗證問題解決方案http://www.cnblogs.com/spring_wang/p/6733814.html

SNF快速開發平臺MVC-EasyUI3.9之-WebApi跨域處理方案http://www.cnblogs.com/spring_wang/p/6733659.html

SNF快速開發平臺MVC-EasyUI3.9之-ueditor富文本編輯在 asp.net MVC下使用步驟http://www.cnblogs.com/spring_wang/p/6710351.html

SNF開發平臺WinForm之十五-時間軸控件使用-http://www.cnblogs.com/spring_wang/p/6285393.html

SNF開發平臺WinForm之十四-站內發送系統信息http://www.cnblogs.com/spring_wang/p/6140031.html

SNF開發平臺WinForm之十三-單獨從服務器上獲取PDF文件進行顯示http://www.cnblogs.com/spring_wang/p/6140025.html

SNF開發平臺WinForm之十二-發送手機短信功能調用http://www.cnblogs.com/spring_wang/p/6139829.html

SNF開發平臺WinForm之十一-程序打包http://www.cnblogs.com/spring_wang/p/6139827.html

SNF開發平臺WinForm之十-Excel導入http://www.cnblogs.com/spring_wang/p/6128604.html

SNF開發平臺WinForm之九-代碼生成器使用說明http://www.cnblogs.com/spring_wang/p/6128595.html

SNF開發平臺WinForm之八-自動升級程序部署使用說明http://www.cnblogs.com/spring_wang/p/6128570.html

SNF開發平臺WinForm之七-單據打印和使用說明http://www.cnblogs.com/spring_wang/p/6126016.html

SNF開發平臺WinForm之六-上傳下載組件使用http://www.cnblogs.com/spring_wang/p/6125929.html

SNF開發平臺WinForm之五-高級查詢使用說明-http://www.cnblogs.com/spring_wang/p/6116640.html

SNF開發平臺WinForm之四-開發-主細表管理頁面-http://www.cnblogs.com/spring_wang/p/6116626.html

SNF開發平臺WinForm之三-開發-單表選擇控件建立-http://www.cnblogs.com/spring_wang/p/6116592.html

SNF開發平臺WinForm之二-開發-單表表單管理頁面-http://www.cnblogs.com/spring_wang/p/6116572.html

SNF開發平臺WinForm之一-開發-單表表格編輯管理頁面-http://www.cnblogs.com/spring_wang/p/6116523.html

Winform開發框架之通用Windows攝像頭調用拍照http://www.cnblogs.com/spring_wang/p/6008674.html

Winform開發框架之圖表報表在線設計器2-圖表-SNF.EasyQuery項目--SNF快速開發平臺3.3-Spring.Net.Framework

Winform開發框架之圖表報表在線設計器-報表-SNF.EasyQuery項目--SNF快速開發平臺3.3-Spring.Net.Framework

Winform開發框架之通用附件管理模塊 --SNF快速開發平臺3.3-Spring.Net.Framework

SNFAutoupdater通用自動升級組件V2.0-WinForm

SNF快速開發平臺3.2之--.Net可擴展的單據編號生成器-SNF.CodeRule

SNF快速開發平臺3.1之--審覈流(3)低調奢華,簡單不凡,實例演示-SNF.WorkFlow

SNF快速開發平臺3.1之--審覈流(2)流程設計-SNF.WorkFlow功能使用說明

SNF快速開發平臺3.1之--審覈流(1)SNF.WorkFlow審覈流簡介

SNF快速開發平臺3.0之--完美的代碼生成器SNF.CodeGenerator-快速開發者的利器

基於MVC4+EasyUI的Web開發框架--Spring.Net.FrameworkV3.0整體介紹

SNF快速開發平臺3.0之--MVC 打印解決方案

SNF快速開發平臺3.0之--文件批量上傳-統一附件管理器-在線預覽文件(有互聯網和沒有兩種)

SNF快速開發平臺3.0之--asp.net mvc4 強大的導出和不須要上傳文件的批量導入EXCEL

SNF快速開發平臺3.0之MVC通用控件庫展現-Asp.net+MVC4.0+WebAPI+EasyUI+Knockout

SNF快速開發平臺3.0之BS頁面展現和九大優勢-部分頁面顯示效果-Asp.net+MVC4.0+WebAPI+EasyUI +Knockout

SNF快速開發平臺3.0之-界面個性化配置+10種皮膚+7種菜單-Asp.net+MVC4.0+WebAPI+EasyUI+Knockout

SNF快速開發平臺3.0之-CS頁面-Asp.net+Spring.Net.Framework

SNF快速開發平臺3.0之--系統裏廣播的做用--迅速及時、簡明扼要的把信息發送給接收者

相關文章
相關標籤/搜索