公共书包public(例子文件:_samples/public.html)---缺省存在的书包
发布时间:2015-09-22 19:45:07public书包用来存放系统运行中产生的公共变量,相当于jsp、asp、php中的全局,优势是用起来更Easy,只需要在书包public放入和取出即可
放入:
- <chtml>
- <bag id=public><we name=test>@{int:@{public:test}+1}</we></bag>
- </chtml>
取出:
@{public:test}
可以在任意网页中操作,结果都是全局有效
实例:
文件_samples/public.html
- <html>
- <title>公共信息书包</title>
- <h3>公共信息书包</h3>
- <table border=1>
- <chtml>
- <tr><th>变量名</th><th>值
相关文章