javascript – 缺少名字.用于socket.io js文件的运算符YUI Compressor

前端之家收集整理的这篇文章主要介绍了javascript – 缺少名字.用于socket.io js文件的运算符YUI Compressor前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_502_0@
我正在尝试使用YUI压缩器作为基于socket.io的.js文件(是的,我知道它是服务器端脚本,不需要minification,但它是要求,所以我有一个较少的控制).我的代码是这样的:
fs.readFile('../examples/example.xml',function(err,data) {
  if (err) throw err;
  // parsing the new xml data and converting them into json file
  var json = parser.toJson(data);
  // adding the time of the last update
  json.time = new Date();
  // send the new data to the client
  socket.volatile.emit('notification',json);
});

当我执行YUI压缩器,我得到错误@这行:

socket.volatile.emit('notification',json);

[ERROR] 36:22:missing name after . operator

我假设是扔错误,因为volatile是关键字权利?任何人都可以指导我如何摆脱这个错误.

解决方法

如果用引号括起来,压缩机将会丢失保留字
socket['volatile'].emit()
原文链接:https://www.f2er.com/js/153785.html

猜你在找的JavaScript相关文章