库的回调在节点中阻止



我尝试使用这两个库来检测NFC标签(https://github.com/mitchellparsons/rc5222-rfid-promise)并控制MPD服务器(https://github.com/andrewrk/mpd.js)在覆盆子pi上。我在Raspbian Jessie上使用Node v6.9.5(2017-01-11)。

执行以下代码时,仅执行MPD侦听器。我做错了什么或误解了nodejs的概念?

var mpd = require('mpd')
var rc522 = require("rc522-rfid-promise")
var client = mpd.connect({
  port: 6600,
  host: 'localhost',
})
rc522.startListening()
  .then(function(rfidTag){
    console.log('Got RFID tag')
})
client.on('ready', function() {
  console.log("MPD ready")
})

谢谢!

尝试在错误事件上聆听:

client.on('error', function (err) {
  console.log('Error:', err)
});

相关内容

  • 没有找到相关文章

最新更新