当前位置:   article > 正文

Python语言实现React框架

reactpy

5700c58b1f5e57a7a2fdff17e04346c1.png

迷途小书童的 Note

读完需要

6

分钟

速读仅需 2 分钟

1

   

reactpy 介绍

reactpy 是一个用 Python 语言实现的 ReactJS 框架。它可以让我们使用 Python 的方式来编写 React 的组件,构建用户界面。

reactpy 的目标是想要将 React 的优秀特性带入 Python 领域,包括组件化、虚拟 DOM、声明式编程等。它可以无缝集成到我们的 Python 后端应用中。

2

   

实现原理

reactpy 的核心原理是使用 JavaScript 编写的高效 DOM 操作库 InteractJS 与 Python 代码相连接。

  • InteractJS 负责实际的 DOM 操作,实现类 React 的渲染和计算机制

  • Python 端用类的方式定义组件,通过 pyreact 接口与 InteractJSruntime 连接

  • Python 端 state 或 props 变化时,重新 render()并调用 rerender 将变化传给 JS 端

  • InteractJS 通过 DOM diff 运算进行精确更新,重新渲染页面

  • 事件和数据从 JS 端传回 Python 端做处理

3

   

基本用法

使用之前,我们需要安装一下

pip install reactpy

reactpy 的用法与 React 非常类似。下面是一个简单示例

  1. from reactpy import component, html, run
  2. # 这是一个定义应用程序显示内容(本例是一个一级标题)的方法,@component装饰器应用其上,会将其转换为组件
  3. @component
  4. def App():
  5. return html.h1("Hello, world!")
  6. # 将App方法作为参数启动 web server
  7. run(App)

执行上述脚本,在浏览器中打开链接 http://127.0.0.1:8000 ( http://127.0.0.1:8000 )

d3a9f91f0383a974bf64a231690bd835.png

有时候,我们希望两个组件的状态始终保持一致。在下面的示例中,2 个输入框共享相同的状态。状态通过父组件 SyncedInputs 共享。检查 value 和 set_value 变量的值。

  1. from reactpy import component, hooks, html, run
  2. @component
  3. def SyncedInputs():
  4. value, set_value = hooks.use_state("")
  5. return html.p(
  6. Input("First input", value, set_value),
  7. Input("Second input", value, set_value),
  8. )
  9. @component
  10. def Input(label, value, set_value):
  11. def handle_change(event):
  12. set_value(event["target"]["value"])
  13. return html.label(
  14. label + " ", html.input({"value": value, "on_change": handle_change})
  15. )
  16. run(SyncedInputs)

执行脚本后,在 First input 中输入的字符,同时也会出现在 Second input 中。

2ed7dfa8adbd9b0c8120de9029440072.gif

下面是一个点击事件处理的示例

  1. from reactpy import component, html, run
  2. @component
  3. def PrintButton(display_text, message_text):
  4. def handle_event(event):
  5. print(message_text)
  6. return html.button({"on_click": handle_event}, display_text)
  7. @component
  8. def App():
  9. return html.div(
  10. PrintButton("Play", "Playing"),
  11. PrintButton("Pause", "Paused"),
  12. )
  13. run(App)

当点击 Play 时,终端将打印 Playing,点击 Pause 按钮,将打印 Paused

ee80058efa5b8ff5c0c76402bd816af0.png

最后,再看一个示例,在页面中显示图片

  1. from reactpy import component, html, run
  2. @component
  3. def Title(title):
  4. return html.h1(title)
  5. # 使用网站的logo图片
  6. # 设置CSS样式,width: 30%
  7. @component
  8. def Photo():
  9. return html.img(
  10. {
  11. "src": "https://xugaoxiang.com/wp-content/uploads/2020/05/logo.png",
  12. "style": {"width": "30%"},
  13. }
  14. )
  15. @component
  16. def PhotoViewer():
  17. return html.section(
  18. Title("My logo."),
  19. Photo()
  20. )
  21. run(PhotoViewer)

代码运行后,效果是这样的

af7099783ed8ef3e59dc71fe83320997.png

4

   

总结

ReactPy 是一个 Python 库,它为使用 Python 进行前端开发带来了类似 ReactJS 的功能。借助 ReactPy,您可以轻松成为全栈开发人员,使用相同的语言处理前端和后端。

e79f6e613e905077a3eb4eeb68a6e596.jpeg

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/154086
推荐阅读
相关标签
  

闽ICP备14008679号