首页 > 源码教程 > EyouCMS教程

易优和织梦标签对比示例,不支持sql标签,可用其他标签代替

ok佬 2024-11-20 08:50:05 人看过

下面我们将织梦和易优的sql标签进行对比转换,大家在学习时留意两个系统语法的相似之处。


注意事项:

示例中ey_代表数据表的前缀,假设你安装网站时数据表前缀是ey_,那么ey_arctype就是ey_arctype


-------------------------------示例1----------------------------


织梦:调用指定栏目的封面页内容,比如栏目ID是1

{dede:sql sql="select content from dede_arctype where id=1"}
    [field:content function=cn_substr(Html2Text(@me),600)/]
{/dede:sql}

易优:指定栏目的封面页内容,比如栏目ID是1,在易优这边只有单页模型的栏目才有封面页内容

{eyou:sql sql='select content from `ey_single_content` where typeid = 1' id='field'}
    {$field.content|html_msubstr=###,0,300,true}
{/eyou:sql}

或者

{eyou:type typeid='1' addfields='content' id='field'}
    {$field.content|html_msubstr=###,0,300,true}
{/eyou:type}

-------------------------------示例2----------------------------


织梦:调用指定栏目的数据,比如栏目ID是1

{dede:sql sql="select * from dede_arctype where id=1"}
    栏目ID:[field:id/]
    栏目名称:[field:typename/]
    栏目链接:[field:typelink/]
{/dede:sql}

易优:调用指定栏目的数据,比如栏目ID是1

{eyou:sql sql='select * from `ey_arctype` where id = 1' id='field'}
    栏目ID:{$field.id}
    栏目名称:{field:typename}
    栏目链接:{field:typeurl}
{/eyou:sql}

或者

{eyou:type typeid='1' id='field'}
    栏目ID:{$field.id}
    栏目名称:{field:typename}
    栏目链接:{field:typeurl}
{/eyou:type}

-------------------------------示例3,sql标签可以用php标签代替----------------------------


织梦:调用指定栏目的数据,比如栏目ID是1

{dede:sql sql="select * from dede_arctype where id=1"}
    栏目ID:[field:id/]
    栏目名称:[field:typename/]
    栏目链接:[field:typelink/]
{/dede:sql}

易优:调用指定栏目的数据,比如栏目ID是1

{eyou:php}
    $sql = 'select * from ey_arctype';
    $tmp_list = db()->query($sql);
    foreach ($tmp_list as $_k => $_v) {
        echo "栏目ID:".$_v['id'];
        echo " -- ";
        echo "栏目名称:".$_v['typename'];
        echo " -- ";
        echo "栏目链接:".typeurl('home/Lists/index', $_v);
        echo "<br/>";
    }
{/eyou:php}


© 版权声明

发表评论

加载中~

编辑推荐

热门文章

OK资源库是一家专注各类源码分享,绿色软件分享,资源接口分享,福利线报分享,源码教程。我们每日更新免费可靠的资源,注册就是VIP会员更深受用户好评,是您首选的资源下载站
Copyright © 2023-2024 OK资源库 版权所有 琼ICP备202309987431号-1