zoukankan      html  css  js  c++  java
  • node-red File读取好保存

    File节点是操作文件的节点

    file文件的保存

    拖拽 注入节点inject  file节点(writes msg.payload to a file)和 debug节点到工作区,并连线

    设置file节点的文件路径

    • windows如果不设置路径,会保存在C:UsersAdministrator
    • docker容器保存在根目录下

    此处文件名我选择 放到data目录下,因为docker容器启动的时候我把/data目录挂载到宿主机上了,方便查看文件

    行为有三种,追加至文件  复写文件  删除文件

    勾选上创建目录,否则如果目录和文件不存在,需要手动创建

    例子:

    [{"id":"898828bc.89b418","type":"inject","z":"6c70a17b.e110f","name":"","topic":"","payload":"","payloadType":"date","repeat":"","crontab":"","once":false,"onceDelay":0.1,"x":290,"y":300,"wires":[["1e951d4f.b4d6a3"]]},{"id":"1e951d4f.b4d6a3","type":"file","z":"6c70a17b.e110f","name":"save","filename":"/data/testtimestamp.txt","appendNewline":true,"createDir":true,"overwriteFile":"false","encoding":"none","x":450,"y":300,"wires":[["c27669f0.bef7e8"]]},{"id":"c27669f0.bef7e8","type":"debug","z":"6c70a17b.e110f","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","x":610,"y":300,"wires":[]}]

    文件的读取

    文件的读取和保存类似

     把上面的file写节点换成file读节点(Reads the contents of a file...)

    第一个注入节点inject只是启动发送信号作用

    debug区域显示文件内容:

  • 相关阅读:
    【BootStrap】有序/无序列表 代码和表单
    【BootStrap】BootStrap排版
    【BootStrap】栅格系统
    【Django】组合筛选
    【Ajax】Ajax全套+跨域Ajax
    【JavaScript】JavaScript面试题1
    【Django】Form组件-1
    【Django】cookie和session
    【Django】 Admin 管理工具
    【Django】ORM操作数据库
  • 原文地址:https://www.cnblogs.com/zhzhlong/p/11505507.html
Copyright © 2011-2022 走看看