码迷,mamicode.com
首页 > 其他好文 > 详细

if判断标签实例

时间:2015-02-17 12:56:11      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:if标签   开关判断   电子商务   实例   web开发   

轻开B2C电子商务网站删除商品实例

栏目节点及引入权限检查文件

<chtml><Bag id=sys><we name=NodeID>a0.0</we></Bag></chtml><!-- 栏目节点 -->
<chtml file="base/ac/checkAcl.htm"/><!-- 引入权限检查文件 -->
权限判断

<chtml>
<!-- 权限判断 -->
<if x="@{sys:canDo}" else=1>
<we x=true>
	<call>act</call>
	<to>@{sys:face}@{sys:curPath}list.html?c=@{show:catalog}</to>
</we>
<script>alert("您没有权限!");history.back();</script>
</if>
</chtml>
如果@{sys:canDo}=true,执行删除,然后返回列表
<we x=true>
	<call>act</call>
	<to>@{sys:face}@{sys:curPath}list.html?c=@{show:catalog}</to>
</we>
否则(@{sys:canDo}=false),提示无权操作并退回上一页
<script>alert("您没有权限!");history.back();</script>
删除商品的代码
<chtml id=act onlycall>
<esql module=base id=show>select we_num,catalog from co_sale where we_id='@{pPage:myid}'</esql>
<file act=del>htm/images/@{show:we_num}/</file>
<ESql module=base act=edit>delete from co_sale where we_id='@{pPage:myid}'</ESql>
</chtml>
完整的代码
<html>
<chtml><Bag id=sys><we name=NodeID>a0.0</we></Bag></chtml><!-- 栏目节点 -->
<chtml file="base/ac/checkAcl.htm"/><!-- 引入权限检查文件 -->
<chtml>
<!-- 权限判断 -->
<if x="@{sys:canDo}" else=1>
<we x=true>
	<call>act</call>
	<to>@{sys:face}@{sys:curPath}list.html?c=@{show:catalog}</to>
</we>
<script>alert("您没有权限!");history.back();</script>
</if>
</chtml>
</html>
<chtml id=act onlycall>
<esql module=base id=show>select we_num,catalog from co_sale where we_id='@{pPage:myid}'</esql>
<file act=del>htm/images/@{show:we_num}/</file>
<ESql module=base act=edit>delete from co_sale where we_id='@{pPage:myid}'</ESql>
</chtml>
文件在轻开B2C电子商务网站的site/eb目录下(site/eb/show_del.chtml),赶快打开看看,亲自实验一下吧技术分享

轻开平台资源下载及说明

平台免费下载:http://download.csdn.net/detail/tx18/8381859

最新开发手册下载:http://download.csdn.net/detail/tx18/8411089

开发实例:轻开B2C电子商务网站,免费下载:http://download.csdn.net/detail/tx18/8318585

轻开平台会不定期升级为大家提供更多强大而Easy的功能,请留意最新的开发手册

if判断标签实例

标签:if标签   开关判断   电子商务   实例   web开发   

原文地址:http://blog.csdn.net/tx18/article/details/43865465

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!