在打包或者运行的时候,又时候会一直卡在
downloading url=https://github.com/electron/electron/releases/download/v2.0.18/electron-v2.0.18-darwin-x64.zip size=84 M...
yekong
3年前 (2022-04-04)
喜欢
electron-vue打包时,报错
UnhandledPromiseRejectionWarning: ReferenceError: Multispinner is not defined
打开/.electron-vue/build.js
找到这一段注释掉
cons...
yekong
3年前 (2022-04-03)
喜欢
electron-vue打包时会报错
Identifier 'tasks' has already been declared
打开/.electron-vue/build.js
找到tasks修改一下名称,比如改为tasksed,重新打包就可以了。
const tasksed...
yekong
3年前 (2022-04-03)
喜欢
安装脚手架
npm install -g vue-cli
初始化项目
vue init simulatedgreg/electron-vue my-project
配置项目
进入项目 安装依赖 运行
cd my-project
yarn # or npm install
y...
yekong
3年前 (2022-04-03)
喜欢
eggjs 读取数据库代码 效果,读取数据库前需要先连接数据库
路由配置
// 读取数据库
router.get('/api/user/:name', controller.user.info);
controller 代码
// app/controller/use...
yekong
3年前 (2022-02-03)
喜欢
添加配置
config/plugin.js
'use strict';
/** @type Egg.EggPlugin */
// module.exports = {
// // had enabled by egg
// mysql: {
// enabl...
yekong
3年前 (2022-02-03)
喜欢
接口请求示例图
安装依赖
npm i tls-sig-api-v2
使用源码
'use strict';
const Controller = require('egg').Controller;
let TLSSigAPIv2 = require('tls-sig-api...
yekong
3年前 (2022-02-03)
喜欢
创建文件weatcher
app/controller/weatcher.js
'use strict';
const Controller = require('egg').Controller;
const axios = require('axios');
class...
yekong
3年前 (2022-02-02)
喜欢
安装依赖
npm i axios --save
引入
const axios = require('axios');
使用实例eggjs 使用高德地图查询天气
...
yekong
3年前 (2022-02-02)
喜欢
控制器
async add() {
const { ctx } = this;
ctx.body = {
code: 200,
data: ctx.request.body,
};
}
路由
module.exports ...
yekong
3年前 (2022-01-21)
喜欢