zoukankan      html  css  js  c++  java
  • 5ucms 调用指定栏目指定文章方法

    一、直接指定文章得id编号调用

    <!--channel:{ $row=1 $table=channel $where=id={field:cid} }-->  
    <!--artlist:{$Table=Content $cid=[gsbj:childids] $Where=[id] in (117) $row=1  }-->  //本示例指定调用了当前栏目下文章id为117的文章
    <!--c:{$row=1 $table=[channel:table $Replace={pre}##] $where=[aid]=[artlist:id] and [cid] =[artlist:cid] $order=[aid] desc}--> 
    	     <p>[c:content]</p>
    <!--c-->
    <!--artlist-->
    <!--channel-->
    

      

    二、排除该栏目下的所有不调用的文章

    不想在列表里面调用某篇文章怎么写标签? 这里做一个简单的demo
      1、排除指定文章
      这种直接采用标签生成器中的文章列表生成即可,实例如下
      效果:排除文章ID为1的文章
    <!--List:{ $Row=3 $Aid=1 $Order=[ID] Asc }-->    
    <li> [list:titlex] </li>     
    <!--list-->   
     
    里的$Aid就是你要排除的文章ID。
        2、排除指定的多个文章,要排除多个文章,就不能用上面的方法了,这里要改为组合标签调用。实例如下:
    <!--List:{ $Row=10 $Table=Content $Where=[id] not in (1,2,3) $Order=[ID] Desc }-->    
    <li>[list:titlex]  </li>    
    <!--list-->  
    解释一下:
    1、组合标签必须要声明查询的表名, 这里的就是 $table=Content  。
    2、满足条件为where [id] not in (1,2,3) 也就是满足ID不为1,2,3的条件输出,输出结果为 排除文章ID为1,2,3后生成的列表。

    三、在文章中设置一个关键字

    例:关键字为  keyword

    在调用标签中加入 $key=keyword $mode=about

    $mode=about的作用是当设置了多个关键字的时候可以查询得到 keyword关键字

  • 相关阅读:
    mysql实现主从备份
    Spring boot 继承 阿里 autoconfig 配置环境参数
    Spring Boot 注解的使用
    SpringBoot yml 配置
    浅谈提高工作效率
    Oracle 数据库特殊查询总结
    WPF MVVM 学习总结(一)
    VS2010部署Asp.net程序到本地IIS 7
    Asp.net MVC3表格共用分页功能
    WCF学习总结
  • 原文地址:https://www.cnblogs.com/zgzy/p/2922546.html
Copyright © 2011-2022 走看看