zoukankan      html  css  js  c++  java
  • wojilu评论功能代码分析简记

    最近,简单看了一下wojilu评论功能的实现,作者介绍文章(http://www.wojilu.com/Common/Page/52)

    FileComment : ObjectBase<FileComment>, IComment

      FileComment实现 IComment接口, IComment 接口定义了一个评论对象应该表现的行为。

    另外,FileCommentController : CommentController<FileComment>。

    public class CommentController<T> : ControllerBase where T : ObjectBase<T>, IComment

    {
    public ICommentService<T> commentService { get; set; }

     CommentController 组合使用 CommentService<T>对象,管理评论。

     看一个 CommentController中 的方法Create,创建评论

    [HttpPost, DbTransaction]
     public virtual void Create( int postId ) {
     ......
     IComment comment = Validate( postId );//验证并获取一个评论对象
    ......
     Result result = commentService.Insert( comment, lnkTarget );//保存评论对象到数据库。
    ......

    public IComment Validate( int postId ) {

     IComment comment = Entity.New( typeof( T ).FullName ) as IComment;//生成一个评论对象
     ......
    comment.RootId = postId;
    comment.ParentId = ctx.PostInt( "ParentId" );
    comment.AppId = ctx.app.Id;
    comment.Author = userName;
    comment.Content = content;
    comment.Ip = ctx.Ip;
    comment.Created = DateTime.Now;

    if (ctx.viewer.IsLogin) {
    comment.Member = (User)ctx.viewer.obj;
    }
    return comment;

     学习这段代码收获很多,加深了对接口用法的理解,了解了泛型约束的概念。

     IComment comment = Entity.New( typeof( T ).FullName ) as IComment;//生成一个评论对象

    以上,有时间在学习体会一下。 

  • 相关阅读:
    闲着写了一个查看股票的程序
    Oracle10g正则表达式
    跨语言平台的RSA加密、解密、签名、验证算法的实现
    Base64转换:AQAB=65537,你知道为什么吗?
    无题
    07年了,新的一年又开始了
    简单生活
    近期关注
    闲话
    各大网站的WEB服务器分析
  • 原文地址:https://www.cnblogs.com/xchsp/p/2289848.html
Copyright © 2011-2022 走看看