1.通过getMac库获取mac地址 通过getMac库来获取:getmac - npmGet the MAC address of the current machine you are on.. Latest version: 5.20
通过getMac库来获取:getmac - npmGet the MAC address of the current machine you are on.. Latest version: 5.20.0, last published: a year aGo. Start using getmac in your project by running `npm i getmac`. There are 201 other projects in the npm reGIStry using getmac.https://www.npmjs.com/package/getmac
// 安装getMac之后引入import getMAC, { isMAC } from 'getmac'// 直接调用getMac()方法console.log(getMAC())
但是给方法仅适用于node.js
对已经成型的vue项目:vue add electron-builder
安装成功之后会在man.js文件统计目录之下生成一个background.js文件,并且在package.JSON文件中会有electron相应的配置
在vue.config.js里面配置
module.exports = { pluginOptions: { electronBuilder: { nodeIntegration: true } }, }
之后可以通过getMac在background.js里面获取mac地址,然后通过store保存
或者在需要mac地址的页面获取,获取的mac地址分为以太网和WLAN
async created() { this.getMAC()},methods: { getMAC() { const interfaces = require('os').networkInterfaces() console.log('MAC====>', interfaces) },}
之后运行npm run electron:serve或者打包 npm run electron:build即可
打包遇到的问题可以参考:Electron-vue打包错误问题解决_onYang的博客-CSDN博客
--结束END--
本文标题: 前端获取mac地址
本文链接: https://lsjlt.com/news/422190.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0