头条新闻更新不及时
作者:
来源:本站原创
点击数: 次
发布时间:2021年11月03日
问题描述:后台上传头条新闻后,前台更新不及时。
问题分析:查看头条新闻所用的标签如下
@Power.ArticleList("文章头条列表", new {Node="ttxw", LinkBlankTarget = true, IsSetFontStyle = true, Count = 1, TitleLength = 52, TopicNum = 1, TopicTitleLength = 250, TopicContentLength = 142, TopicDisplayPic = false,Sort="Priority DESC,PublishTime DESC" },15 ,false)
其中标红的参数15为缓存时间,单位为分钟,0表示不缓存。
解决方案:将缓存时间参数设置为0,前台就会实时更新。
@Power.ArticleList("文章头条列表", new {Node="ttxw", LinkBlankTarget = true, IsSetFontStyle = true, Count = 1, TitleLength = 52, TopicNum = 1, TopicTitleLength = 250, TopicContentLength = 142, TopicDisplayPic = false,Sort="Priority DESC,PublishTime DESC" },0,false)