我想尝试web2py
在web2py
. 通过这种方式,我可以在命令行上测试组件,并生成简单的 html 文件,我可以在将它们与完整的web2py
应用程序堆栈集成之前对其进行分析。这加快了我的开发周期,因为我可以专注于微调组件的 HTML 而无需担心任何其他问题(重新部署、数据库等)。快速简单:准备一个带有gluon.html
helpers 的 web2py 组件,看看生成的 HTML 是否好看,然后在web2py
.
测试基本上是成功的。我只需要:
from gluon.html import A, TABLE, DIV, SPAN, THEAD, TR, TH, TBODY, URL, H1
def T(txt):
return txt
def my_simple_component(title):
return H1(T(title))
def test():
print my_simple_component('Hello')
这会产生预期的输出:
$ python test_web2py_components.py
<h1>Hello</h1>
(我不关心T
我的测试。对于URL
我想使用的任何测试,我只传递一个假的应用程序/控制器/函数。)
我发现的唯一问题是我需要一个符号链接才能web2py
进行gluon.html
导入,即使 gluon 在 PYTHONPATH 上也是如此。
ln -s /install_dir/web2py/gluon/ .
有没有办法在没有额外链接的情况下导入胶子组件?
考虑到在测试阶段我的组件在 web2py 应用程序树之外。
这是我得到的错误:
Traceback (most recent call last):
File "lib_test1.py", line 4, in <module>
from gluon.html import A, TABLE, DIV, SPAN, THEAD, TR, TH, TBODY, URL
File "/install_dir/web2py/gluon/__init__.py", line 15, in <module>
from globals import current
File "/install_dir/web2py/gluon/globals.py", line 24, in <module>
from serializers import json, custom_json
File "/install_dir/web2py/gluon/serializers.py", line 11, in <module>
from languages import lazyT
File "/install_dir/web2py/gluon/languages.py", line 264, in <module>
PLURAL_RULES = read_possible_plurals()
File "/install_dir/web2py/gluon/languages.py", line 250, in read_possible_plurals
for pname in os.listdir(pdir):
OSError: [Errno 2] No such file or directory: '/current_dir/gluon/contrib/rules'
(不要考虑install_dir
和current_dir
:他们已经为这个问题引入了)