是否可以将值分配给 中的全局变量handler.pl
?
我需要为 in 中的全局变量赋值handler.pl
,并从 Mason 组件中获取该值。
我试过这样:
httpd.conf
...
PerlRequire handler.pl
...
处理程序.pl
...
our $x = 'test';
...
东西.mas
...
<h1><% $x %></h1>
...
但它不起作用,它不会返回<h1>test</h1>
,但就像<h1></h1>
未定义一样$x
。我怎样才能让它工作?