会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
秦小鹤
博客园
首页
新随笔
联系
订阅
管理
2017年3月21日
笔记
摘要: 1、数组用空格分开拼接字符串 f (product.Keywords != null) { pvm.Keywords = string.Join(" ", product.Keywords); } 2、MongoDB的Map Reduce var mapFun=function() { for (v
阅读全文
posted @ 2017-03-21 14:29 秦小鹤
阅读(182)
评论(0)
推荐(0)
2016年8月10日
MVC基础知识-Controller
摘要: 新建xxController继承自:System.Web.Mvc.Controller 一个Controller可以包含多个Action. 每一个Action都是一个方法, 返回一个ActionResult实例 一个Controller对应一个xxController.cs控制文件,对应在View中
阅读全文
posted @ 2016-08-10 11:22 秦小鹤
阅读(1264)
评论(0)
推荐(0)
MVC基础知识-View
摘要: View和Action之间数据传递(前后台数据传递) 弱类型 ViewData[""] 动态型 ViewBag //dynamic 动态类型Model 后台:return View(data); //存入 ViewData.Model 前台:Model //其实就是 WebViewPage.Mode
阅读全文
posted @ 2016-08-10 10:56 秦小鹤
阅读(321)
评论(0)
推荐(0)
公告