[#]: subject: "Build a Smart Parking System for a Metro Station" [#]: via: "https://www.opensourceforu.com/2022/06/build-a-smart-parking-system-for-a-metro-station/" [#]: author: "Dr Maheswari R. https://www.opensourceforu.com/author/dr-maheswari-r/" [#]: collector: "lkxed" [#]: translator: "Maisie-x" [#]: reviewer: "wxy" [#]: publisher: "wxy" [#]: url: "https://linux.cn/article-14881-1.html" 为地铁站构建一个智能停车系统 ====== > 本文将帮助你设计一个基于 Web 的应用程序,使用 Node-RED 为地铁站的汽车提供一个自动智能停车系统。 ![Smart car parking][1] Web 应用程序是在 Web 服务器上运行的软件。终端用户通过 Web 浏览器访问 Web 应用程序。Web 应用程序使用客户端—服务器(C/S)架构进行编程,该架构是用户(客户端)通过远程服务器(可能由第三方托管)提供服务。Web API(应用程序编程接口)在整个 Web 上是可用的,用户可以通过 HTTP 协议访问该接口,如图 1 所示。 ![Figure 1: Web API][4] 本文将演示如何为地铁设计一个基于 Web 的汽车自动智能停车系统。 它是使用开源的 Node-RED 设计。该系统使用模板节点创建了一个交互式的、时尚的用户登录表单,用 HTML 和 CSS 编码以获取车主的详细信息,从而实现停车系统的自动化。我们可以在图 2 和图 3 看到登录表单和提交表单的流程图。 使用的节点如下: ![table function][3] ### 地铁智能停车节点流程设计 Node-RED 由 `node-red` 命令激活。访问网址 `http://127.0.0.1:1880/` 可以看到 Node-RED 用户界面流程浏览器已经启用,可以认为 Node-RED 设置已完成,可以正常工作了。 按照下面给出的步骤创建登录表单和提交表单。 ![Figure 2: Login form flow diagram][5] ![Figure 3: Submission form flow diagram][6] ### 登录表单 1、在节点画布中,拖放 http 输入http in 节点,这会为创建 Web 服务创建一个 HTTP 访问点。 2、将 http 输入http in 节点连接到 函数function 节点。函数节点有助于编写 JavaScript 函数处理节点接收到的消息。 ![Figure 4: Login form for smart parking for cars][7] 3、将 函数function 节点连接到 模板template 节点,模板节点基于提供的模板创建一个 Web API。 4、将 模板template 节点连接到 http 响应http response 节点,它将响应 http 输入http in 节点的请求。 ![Figure 5: Submission form for smart parking for cars][8] ### 提交表单 1、拖放 http 输入http in 节点并将其连接到 json 节点,json 节点将数据转换为 JSON 字符串进行通信。 2、将 http 输入http in 节点连接到 调试debug 节点,调试节点的调试监控器会输出结果。 3、将 json 节点放置并连接到 函数function 节点,将后者连接到 http 响应http response 节点。 创建完整流程后,单击 Node-RED 窗口右上角的 部署Deploy 按钮。访问 `http://127.0.0.1:1880/ui/` 这个链接查看用户界面。 输入链接然后单击 提交Submit 后,该链接会跳转到下一页,你可以在该页面阅读所有新闻。 ### Node-RED 工作流程 在单个 Node-RED 流程中,你可以创建登录表单和提交表单,如图 4 和图 5 所示。 现在我们将配置节点属性。 #### 登录表单 编辑 http 输入http in 属性: - 方法method 选择 “Get” - 网址URL 设为 `/MetroStation` - 名称name 配置为 “智能停车系统Smart Parking”。 (LCTT 译注:下文 http 响应节点的名称为 Smart parking,p 字母小写,为了区分,此处中文翻译成智能停车系统。) ![Figure 6: Http in node property configurations][9] > 注意:URL 可以使用任何用户定义的本地变量。 现在选择 函数function 节点,编辑函数节点属性:输入代码 `msg.url = project` ,并配置代码 名称name 字段为 “项目提交Project Submission”。 ![Figure 7: Function node property configurations][10] 在 模板template 节点的属性窗口,为登录表单配置相应的 HTML 代码,并将代码 名称name 命名为 “显示面板Display panel”。在此流程使用了 Mustache 模板格式(LCTT 译注:Mustache 是胡子的意思,因为它的嵌入标记 `{{ }}` 非常像胡子)。Mustache 是一个简单的 Web 模板系统,被描述为无逻辑的模板引擎。Mustache 没有任何显式的控制流语句,例如 `if` 和 `else` 条件和 `for` 循环。可以通过使用块标签处理列表和lambdas 来实现循环和条件评估。 ![Figure 8: Template node property configurations][11] 配置编辑 http 响应http response 节点的属性,名称name 设为 “智能停车Smart parking”(图 9) 。 ![Figure 9: Http response node property configurations][12] #### 提交表单 在 http 输入http in 节点的编辑属性窗口,方法method 选择 “POST” ,网址URL 设为 `/project`。 ![Figure 10: Http in node property configurations][13] 在 JSON 节点的编辑窗口,操作Action设为 “JSON字符串与对象互转Convert between JSON String & Object”,参考图 11。 ![Figure 11: JSON node property configurations][14] 函数function 节点的配置如图 12 所示。 ![Figure 12: Function node property configurations][15] 在 http 响应http response 节点,编辑属性 名称name 为 “已提交项目Project Submitted”。 ![Figure 13: Http response node property configurations][16] > 注意:添加带有评论的评论节点作为 “登录表单” 和 “提交表单”。 ![Figure 14: Debug node property configurations][17] ### 用户界面的控制面板 当用户单击 提交Submit,给出的数据将显示在用户界面和调试节点。如果单击 重置Reset,详细信息将被清除,允许用户输入新的详细信息(图15)。 ![Figure 15: User login UI][18] 地铁停车费率通过超链接提供,收费表在用户界面显示。因此,汽车智能停车系统通过适当的超链接实现自动化,展示地铁站的停车费。该自动化系统的最终输出可以在 Node-RED 控制面板的用户界面和调试监控器调取和展示。 ![Figure 16: Metro parking tariff][19] -------------------------------------------------------------------------------- via: https://www.opensourceforu.com/2022/06/build-a-smart-parking-system-for-a-metro-station/ 作者:[Dr Maheswari R.][a] 选题:[lkxed][b] 译者:[Maisie-x](https://github.com/Maisie-x) 校对:[wxy](https://github.com/wxy) 本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出 [a]: https://www.opensourceforu.com/author/dr-maheswari-r/ [b]: https://github.com/lkxed [1]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Smart-car-parking.jpg [2]: https://www.opensourceforu.com/wp-content/uploads/2022/04/table-function-node-red.jpg [3]: https://www.opensourceforu.com/wp-content/uploads/2022/04/table-function-node-red.jpg [4]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-1-Web-Application-Programming-Interface300.jpg [5]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-2-Login-Form-Flow-Diagram300.jpg [6]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-3-Submission-Form-Flow-Diagram300.jpg [7]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-4-Login-Form-of-Metro-Smart-Car-Parking300.jpg [8]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-5-Submission-Form-of-Metro-Smart-Car-Parking300.jpg [9]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-6-Http-in-Node-Property-Configurations300.jpg [10]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-7-Function-Node-Property-Configurations300.jpg [11]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-8-Template-Node-Property-Configurations300.jpg [12]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-9-Template-Node-Property-Configurations300.jpg [13]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-10-Http-in-Node-Property-Configurations300.jpg [14]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-11-Json-Node-Property-Configurations300.jpg [15]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-12-Function-Node-Property-Configurations300.jpg [16]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-13-Http-Response-Node-Property-Configurations300.jpg [17]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-14-Debug-Node-Property-Configurations300.jpg [18]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-15-User-Login-UI300.jpg [19]: https://www.opensourceforu.com/wp-content/uploads/2022/04/Figure-16-Parking-Tariff-Metro300.jpg