Skip to content

Commit fd4787e

Browse files
author
lizl6
committed
http请求工具
1 parent da0a5f3 commit fd4787e

File tree

6 files changed

+514
-82
lines changed

6 files changed

+514
-82
lines changed

README.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646

4747
- [x] JSON压缩
4848

49-
- [ ] HTTP请求工具
49+
- [x] HTTP请求工具
5050

5151
# 开发
5252

@@ -97,7 +97,7 @@ npm run build-dist:win
9797

9898
## 首页
9999

100-
![image-20221028113933148](https://imgbd.r-xnoro.com//image-20221028113933148.png)
100+
![image-20221113202935222](https://imgbd.r-xnoro.com//image-20221113202935222.png)
101101

102102
## 随机数/密码生成器
103103

@@ -144,3 +144,7 @@ npm run build-dist:win
144144
## JSON解析
145145

146146
![image-20221028113905518](https://imgbd.r-xnoro.com//image-20221028113905518.png)
147+
148+
## HTTP请求工具
149+
150+
![image-20221113203033459](https://imgbd.r-xnoro.com//image-20221113203033459.png)

main.js

+8-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ const createWindow = () => {
3434
useContentSize: true
3535
});
3636
win.loadFile('./src/index.html');
37+
38+
// 打开开发者窗口
39+
// win.webContents.openDevTools();
3740

3841
// 启动恢复主窗口位置和大小
3942
let position = store.get('mainPosition')
@@ -122,7 +125,11 @@ ipcMain.on('windowHttp', (e, title, filePath) => {
122125
frame: true,
123126
title: title,
124127
// parent: win
125-
parent: null
128+
parent: null,
129+
webPreferences: {
130+
preload: path.join(__dirname, './src/preload.js'),
131+
spellcheck: false
132+
}
126133
});
127134
winHttp.loadFile(path.join(__dirname, './src', filePath));
128135
winHttp.webContents.openDevTools();

0 commit comments

Comments
 (0)