关于node-bindings无法在Electron中使用的解决办法
程序员文章站
2022-04-13 15:41:00
node-bindings非常好用,但是在electron中无法使用,我查了一下,是因为filename以file://开头导致无法定位动态库的根目录。已经提交给作者了,可...
node-bindings非常好用,但是在electron中无法使用,我查了一下,是因为filename以file://开头导致无法定位动态库的根目录。已经提交给作者了,可以临时修改一下node_modules/bindings/bindings.js。
exports.getfilename = function getfilename (calling_file) { var origpst = error.preparestacktrace , origstl = error.stacktracelimit , dummy = {} , filename error.stacktracelimit = 10 error.preparestacktrace = function (e, st) { for (var i=0, l=st.length; i<l; i++) { filename = st[i].getfilename() if (filename !== __filename) { if (calling_file) { if (filename !== calling_file) { return } } else { return } } } } // run the 'preparestacktrace' function above error.capturestacktrace(dummy) dummy.stack // cleanup error.preparestacktrace = origpst error.stacktracelimit = origstl //in electron, filename starts with "file://" var fileschema = "file://"; if(filename.indexof(fileschema) === 0) { filename = filename.substr(fileschema.length); //on windows if(filename.indexof(":/") == 2){ filename = filename.substr(1); } } return filename }
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
上一篇: 自定义 vue switch 组件
下一篇: 杭电1995--汉诺塔V
推荐阅读
-
Visual Studio 2013中scanf函数无法使用的详细解决办法
-
使用distinct在mysql中查询多条不重复记录值的解决办法
-
使用jQuery快速解决input中placeholder值在ie中无法支持的问题
-
Visual Studio 2013中scanf函数无法使用的详细解决办法
-
在Python中关于使用os模块遍历目录的实现方法
-
电脑文件无法删除 显示在另外程序中打开的解决办法
-
MongoDB在系统数据库local中无法创建用户的解决办法
-
关于xampp中无法启动mysql,Attempting to start MySQL service...的解决办法!!
-
关于ckeditor在bootstrap中modal中弹框无法输入的解决方法
-
使用distinct在mysql中查询多条不重复记录值的解决办法