我正在尝试将地图从scala转换为java:
var s = net.connect(port, function() {
// Send our header
s.write(JSON.stringify({
id: '123',
destId: '456'
}) + '\n');
s.end('Hello Dave!');
}).on('error', function(err) {
// This should fire when the server rejects our request
// due to one of the request checks failing
console.log('Uh oh: ' + err);
});
但是,456
未转换为Hello Dave!
,而且我找不到实现目标的方法。
scala的做法是什么?