📜  Web2py-组件

📅  最后修改于: 2020-10-17 05:22:06             🧑  作者: Mango


组件被定义为网页的功能部分,它可以自主工作。它可以由嵌入在网页中的模块,控制器和视图组成。应用程序中的组件必须是本地化标签,并且性能被认为与模块无关。

在web2py中,主要重点是使用页面中加载的组件,这些组件通过AJAX与组件控制器进行通信。

web2py中包含的函数,这就是所谓的装载函数,使执行元件容易没有明确的JavaScript或AJAX编程。

考虑一个简单的Web应用程序,即“ test ”,它使用文件“ models / db_comments.py ”中的自定义模型扩展了web2py应用程序。

db.define_table(
   'comment_post', Field('body','text',
   label = 'Your comment'),auth.signature
)

上面的代码将创建具有正确表定义的表“ comment_post ”。该动作将在“ controllers / comments.py ”中的功能的帮助下实施。

def post():
   return dict(
      form = SQLFORM(db.comment_post).process(),
      comments = db(db.comment_post).select()
   )

相应的视图将显示为-

{{extend 'layout.html'}}
{{for post in comments:}}

On {{= post.created_on}} {{= post.created_by.first_name}} says {{= post.body}}
{{pass}} {{= form}}

可以使用给定的URL访问该页面-http://127.0.0.1:8000/test/comments/post

上面提到的方法是访问视图的传统方法,可以通过执行LOAD函数来更改它。

这可以通过使用扩展名“ .load”创建不扩展布局的新视图来实现。

创建的新视图将为“ views / comments / post.load”

On {{= post.created_on}} {{= post.created_by.first_name}} says
{{= post.body}}
{{pass}} {{= form}}

访问该页面的URL为-http://127.0.0.1:8000/test/comments/post.load

LOAD组件可以嵌入到web2py应用程序的任何其他页面中。这可以通过使用以下语句来完成。

{{= LOAD('comments','post.load',ajax = True)}}

例如,控制器可以编辑为-

def index():
   return dict()

View中,我们可以添加组件-

{{extend 'layout.html'}}
{{= LOAD('comments','post.load',ajax = True)}}

可以使用URL访问该页面-http://127.0.0.1:8000/test/default/index

组件插件

组件插件是唯一定义Components的插件。组件使用其模型定义直接访问数据库。

正如前面的例子中提到的评论组件到comments_plugin可以在模型部分来完成-

models / plugin_comments.py ”-

db.define_table(
   'plugin_comments_comment',
   Field('body','text', label = 'Your comment'),
   auth.signature
)

控制器将包括以下插件-

def plugin_comments():
   return LOAD('plugin_comments','post',ajax = True)