我使用DotLiquid模板引擎来允许在应用程序中使用主题。
在内部,我有一个从List继承的分页列表,它被注册为安全类型,允许访问其中的成员。 PaginatedList来自应用程序中的更高层,并且对Dot Liquid的使用无知,因此使用RegisterSafeType而不是继承Drop。
Template.RegisterSafeType(typeof(PaginatedList<>), new string[] {
"CurrentPage",
"HasNextPage",
"HasPreviousPage",
"PageSize",
"TotalCount",
"TotalPages"
});
public class PaginatedList<T> : List<T>
{
/// <summary>
/// Returns a value representing the current page being viewed
/// </summary>
public int CurrentPage { get; private set; }
/// <summary>
/// Returns a value representing the number of items being viewed per page
/// </summary>
public int PageSize { get; private set; }
/// <summary>
/// Returns a value representing the total number of items that can be viewed across the paging
/// </summary>
public int TotalCount { get; private set; }
/// <summary>
/// Returns a value representing the total number of viewable pages
/// </summary>
public int TotalPages { get; private set; }
/// <summary>
/// Creates a new list object that allows datasets to be seperated into pages
/// </summary>
public PaginatedList(IQueryable<T> source, int currentPage = 1, int pageSize = 15)
{
CurrentPage = currentPage;
PageSize = pageSize;
TotalCount = source.Count();
TotalPages = (int)Math.Ceiling(TotalCount / (double)PageSize);
AddRange(source.Skip((CurrentPage - 1) * PageSize).Take(PageSize).ToList());
}
/// <summary>
/// Returns a value representing if the current collection has a previous page
/// </summary>
public bool HasPreviousPage
{
get
{
return (CurrentPage > 1);
}
}
/// <summary>
/// Returns a value representing if the current collection has a next page
/// </summary>
public bool HasNextPage
{
get
{
return (CurrentPage < TotalPages);
}
}
}
然后将此列表公开给local.Products中的视图,迭代Dot Liquid中的集合可以正常工作。
但是,我试图访问其中的属性,我没有收到任何错误,但Dot Liquid没有替换任何值。
我正在使用
{{ local.Products.CurrentPage }} |
替换为
|
谁能看到我哪里出错了?
答案 0 :(得分:1)
我怀疑你的代码不是问题,而是DotLiquid(和Liquid)如何处理列表和集合的限制。 IIRC,您无法访问列表和集合上的任意属性。
您可以通过更改PaginatedList<T>
来对其进行测试,使其包含List<T>
,而不是从中继承。
答案 1 :(得分:0)
您可能需要将继承的类标记为[可序列化]。否则,您可以执行{{MyVariable.MyList.size}}以获取总计数,前提是该计数基于数组。