js递归

    formatNode(node) {
     //    获取websocket发送的msg信息,写了一个递归,前提是要在调用formatNode函数传入的参数控制好
     if (node.key != ‘道岔监测系统‘) {
      //    在sendMsg的头部添加,这样是为了后面转成字符串
      this.sendMsg.unshift(node.key)
      return this.formatNode(node.parent)
     } else {
      console.log(this.sendMsg.join(‘.‘)) // 这个是发送的数据
      return this.jdspClient.SendData({
       cmd: ‘start_data_notify‘,
       tag: this.sendMsg.join(‘.‘),
      })
     }
    },

 

js递归

上一篇:.net core autofac依赖注入简洁版


下一篇:json传输报错500 JSONException: Unquotted string