Navigation

    NodeBB

    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    1. Home
    2. Popular
    Log in to post
    • All categories
    • 公告 | Announcements
    • 入门 | Tutorial
    • 创造 | Create
    • 节点 | Nodes
    • 更新 | Updates
    • 反馈 | FAQ
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All Time
    • Day
    • Week
    • Month

    • S

      每个流程的日志如何输出(已解决)
      反馈 | FAQ • • stayfool  

      22
      0
      Votes
      22
      Posts
      76917
      Views

      S

      @librae 收到
    • S

      当咕咕机遇上node-red
      创造 | Create • • shenyu1996  

      15
      0
      Votes
      15
      Posts
      24614
      Views

      librae

      @jdeal said in 当咕咕机遇上node-red: interval 里的定时功能无法使用,怎么解决额,各位大神们,求教 这个不是无法用哦,需要注意一下时区的问题,参考 https://bb.goiot.cc/topic/28/inject在specific-time时无法触发-已解决
    • librae

      打开 app 时出现 Node-RED 用户名密码对话框的问题(已解决)
      反馈 | FAQ • • librae  

      12
      0
      Votes
      12
      Posts
      21258
      Views

      librae

      多谢 @samuel 帮忙检查!目前已经知道问题所在。 猜测和之前 @bug 遇到的一直弹登录框是同一个原因。 如果浏览器设置阻止了网站的 cookie 使用,则会造成 Node-RED 应用内部用于 websocket 的存储信息(如下图)无法获取,所以无法正常打开。
    • S

      这玩意还是页面整体刷新。。。
      反馈 | FAQ • • stayfool  

      11
      0
      Votes
      11
      Posts
      17940
      Views

      librae

      @librae said in 这玩意还是页面整体刷新。。。: @stayfool said in 这玩意还是页面整体刷新。。。: @librae 昨天在V2EX给你提的左侧的URL还无法使用 查过了,应该是因为 win10 上窗口尺寸不同导致界面元素布局差异造成,究其原因是由于侧边栏一个比较傻 div block 盖掉了 information 已修复
    • librae

      Node-RED 是什么?Go.IoT 又是什么?
      入门 | Tutorial • go.iot node-red tutorial • • librae  

      9
      1
      Votes
      9
      Posts
      18808
      Views

      librae

      @alei643 可以了哈
    • librae

      Node-RED 是什么?Go.IoT 又是什么?
      入门 | Tutorial • go.iot node-red tutorial • • librae  

      9
      1
      Votes
      9
      Posts
      18808
      Views

      librae

      @alei643 可以了哈
    • librae

      入门小脑洞(一):创建一个应用
      入门 | Tutorial • go.iot node-red tutorial • • librae  

      6
      0
      Votes
      6
      Posts
      12230
      Views

      librae

      之前已经修复,现在可以注册的哈。
    • H

      Power Switch启动不了APP
      反馈 | FAQ • • heimi1985  

      6
      0
      Votes
      6
      Posts
      4376
      Views

      H

      正常了,感谢处理
    • librae

      入门小脑洞(二):天气卡片
      入门 | Tutorial • go.iot node-red tutorial • • librae  

      5
      0
      Votes
      5
      Posts
      11252
      Views

      librae

      @Alex 谢谢反馈,我们会再写一些入门的小例子 如果觉得麻烦,也可以拷贝已经做好的流程过来修改,比如这个例子的话,可以去这里,选中已有的 flow,然后导出到剪贴板,再在你的编辑器里导入。 在上面的 "9. 更多更多思考" 有聊到。
    • S

      inject在specific time时无法触发(已解决)
      反馈 | FAQ • • shenyu1996  

      5
      0
      Votes
      5
      Posts
      13304
      Views

      librae

      是这样子的,Node-RED 中 inject 节点的 timestamp 是获取的服务器时间,而 debug message 中用于显示的时间戳是前端(也就是你的浏览器中)运行的 javascript 获取的时间,所以这两个时间有出入是有可能的,因为使用的ntp服务器可能会不同,客户端的时间也有可能是手动设置过的(但后者应该不是你的情况)。 debug message 中显示的时间戳在Node-RED前端代码里是这样获取的: function getTimestamp() { var d = new Date(); return d.toLocaleString(); } 而它也仅仅是作为日志的时间戳供debug参考。 Node-RED 所有后台流程中的节点里获取到的,是真正的服务器时间,也是所有的后台数据和逻辑所参考的时间基准。 时区转化是另外一个问题。在 Date 对象中获取的仅仅是一个标准 timestamp,本质上他是可以被格式化为任意时区的时间,在 Node-RED 中也一样。 可以使用 moment.js 来转换到需要的时区,对应的节点可以通过节点管理器安装,也试了一下和你一样的简单的获取时间流程,如下图所示。 也可以看到我这边的情况是并没有那个5s的时差。
    • H

      控制台无法登陆了吗?
      反馈 | FAQ • • hk77cn  

      5
      0
      Votes
      5
      Posts
      1833
      Views

      librae

      系统升级导致,已修复
    • librae

      入门小脑洞(五):玩点硬的!
      入门 | Tutorial • go.iot node-red arduino hardware neurite • • librae  

      4
      0
      Votes
      4
      Posts
      10058
      Views

      librae

      纯手敲,错别字难免,见谅了 😂
    • librae

      [存储 | Storage] 文件节点 file
      节点 | Nodes • node file storage • • librae  

      4
      1
      Votes
      4
      Posts
      6358
      Views

      librae8226

      @oj 存储的时候前面需要加一个 /data 的,获取的时候不加试试
    • 这

      控制台注册不成功(已解决)
      反馈 | FAQ • • 这个好玩吗  

      4
      0
      Votes
      4
      Posts
      8498
      Views

      librae

      现在可以了,请再次尝试。 之前由于 exmail 强制启动了双重验证导致服务端无法正常发送邮件。
    • H

      应用怎么启动不了了,一直停在99%就不动了
      反馈 | FAQ • • hk77cn  

      4
      0
      Votes
      4
      Posts
      4445
      Views

      librae

      https://goiot.cc/hk77cn/aaa 可以启动啊
    • librae

      Node-RED 1.0.1
      更新 | Updates • • librae  

      3
      0
      Votes
      3
      Posts
      1000
      Views

      librae

      @harrrry 可以了
    • S

      社区和控制台账号不通用?
      反馈 | FAQ • • stayfool  

      3
      0
      Votes
      3
      Posts
      6335
      Views

      S

      @librae ~.~
    • B

      每个app都提示`app not ready, please report`(已解决)
      反馈 | FAQ • • bug  

      3
      0
      Votes
      3
      Posts
      7220
      Views

      librae

      已修复 带来不便请谅解。
    • Z

      Arduino 控制 LED 灯,发现灯无法真正关闭~(已解决)
      反馈 | FAQ • • zjgsamuel  

      3
      0
      Votes
      3
      Posts
      4908
      Views

      librae

      很酷呀,大大的👍
    • H

      无法登陆
      反馈 | FAQ • • hk77cn  

      3
      0
      Votes
      3
      Posts
      693
      Views

      H

      那要如何处理?