码迷,mamicode.com
首页 > Web开发 > 详细

call标签(轻松实现输出网页定制)

时间:2015-04-08 07:57:08      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:call标签   互联网   web开发   电子商务   调用标签   

功能:

·        调用有id的chtml(ChinaHtml)标签

用法:

·        <chtml file=文件名 [id=idname] [onlycall] />

·        <call>idname</call>

属性说明:

·        [id=idname]可选,需要调用时添加

·        [onlycall] 可选,仅调用,没被调用时不执行

例子:

根据条件引入文件

调用

<call>call0</call>
有id的chtml,且为仅调用
<chtml id=call0 onlycall>
...
</chtml>
根据条件执行调用
<if x="@{pPage:file}" else=1>
	<call x=''>call_sys</call>
	<call>call_file</call>
</if>
有id的chtml,且为仅调用,参数为空时调用(引入文件_samples/sys.html
<chtml id=call_sys onlycall file="_samples/sys.html" />
有id的chtml,且为仅调用,参数不为空时调用(根据参数_samples/@{pPage:file}引入文件
<chtml file="_samples/@{pPage:file}" id=call_file onlycall />
完整代码
<title>Call调用的例子</title>
<h3>Call调用的例子</h3>

<chtml>
	<call>call0</call>
</chtml>

<chtml id=call0 onlycall>
<if x="@{pPage:file}" else=1>
	<call x=''>call_sys</call>
	<call>call_file</call>
</if>
</chtml>

<chtml id=call_sys onlycall file="_samples/sys.html" />

<chtml file="_samples/@{pPage:file}" id=call_file onlycall />
效果

@{pPage:file}为空时(http://hua/webeasy/_samples/call.html)
技术分享

http://hua/webeasy/_samples/call.html?file=head.html 时

技术分享

此实例轻松实现输出内容定制技术分享

(例子文件:_samples/call.html)在轻开平台_samples目录下

轻松互联网开发平台(Easy Do IT)资源下载

平台及最新开发手册免费下载:http://download.csdn.net/detail/tx18/8464425

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

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


call标签(轻松实现输出网页定制)

标签:call标签   互联网   web开发   电子商务   调用标签   

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

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