Blogger Information
Blog 11
fans 0
comment 0
visits 11788
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
项目中全局变量的灵活用法
宣博文
Original
1333 people have browsed it

全局变量

什么是全局变量?

全局变量跟环境变量作用域不同。全局变量不受当前环境的影响,只要是在同一个项目下,该变量都会生效。

环境变量和全局变量的调用方法都是一样的 {{变量名}} 。

全局变量的定义

目前通过脚本定义全局变量。

例如我们在预执行脚本中定义一个全局变量num,其值为1000

  1. apt.globals.set("num", "1000"); // 设置一个全局变量

定义后,就可以使用了

全局变量的删除和查看

我们可以通过脚本进行全局变量的删除

  1. apt.globals.delete("num");

也可以点击右上角的小眼睛进行全局变量的查看、修改和删除

全局变量的作用域

全局变量针对当前整个项目有效。

全局变量和环境变量的优先级

全局变量的优先级低于环境变量的优先级。

当环境变量和全局变量都定义了变量num时,将以环境变量定义的值为准。

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post