属性
框架有一些自定义的属性可以写在Controller或Controller中的方法上
ActionDescription可以写在Controller或Controller中的方法上
框架会使用这里定义的名称作为Model名和Action名存在FrameworkModules和FrameworkActions表中
可以写在Controller或Controller中的方法上
AllRight标记的Controller或者方法会跳过页面权限验证,只要用户登陆了就可以访问
可以写在Controller或Controller中的方法上
Public标记的Controller或者方法为公开方法,不需要登陆就可以访问
可以写在Controller或Controller中的方法上
DebugOnly标记的Controller或者方法只有在配置文件中IsQuickDebug为true时才可以访问
可以写在Controller或Controller中的方法上
FixConnection标记的Controller或者方法将使用指定的数据库作为默认DataContext,详情请见数据库分库
可以写在Controller或Controller中的方法上
框架默认会在Post回来的VM验证失败时自动调用VM中的ReInitVM()方法,通过标记ReInit可以改变这种默认行为
可以写在Controller或Controller中的方法上
框架默认会自动过滤表单中<,>这种字符,如果你需要这些字符,比如富文本内容,请在Action上加上这个标记
更多建议: