Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
夜猫逐梦
公众号管理平台
提交
988f1928
公众号管理平台
项目概览
夜猫逐梦
/
公众号管理平台
与 Fork 源项目一致
从无法访问的项目Fork
通知
2
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
公众号管理平台
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
988f1928
编写于
11月 06, 2022
作者:
N
ninecents
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
跨域问题修改(尝试)
上级
3102079a
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
21 addition
and
10 deletion
+21
-10
my-mp/src/main/index.ts
my-mp/src/main/index.ts
+6
-2
my-mp/src/renderer/index.html
my-mp/src/renderer/index.html
+10
-7
my-mp/src/renderer/src/router/index.ts
my-mp/src/renderer/src/router/index.ts
+5
-1
未找到文件。
my-mp/src/main/index.ts
浏览文件 @
988f1928
...
...
@@ -2,6 +2,8 @@ import { app, shell, BrowserWindow } from 'electron'
import
*
as
path
from
'
path
'
import
{
electronApp
,
optimizer
,
is
}
from
'
@electron-toolkit/utils
'
app
.
commandLine
.
appendSwitch
(
"
disable-features
"
,
"
OutOfBlinkCors
"
);
app
.
commandLine
.
appendSwitch
(
"
disable-web-security
"
);
app
.
commandLine
.
appendSwitch
(
'
disable-site-isolation-trials
'
)
function
createWindow
():
void
{
// Create the browser window.
...
...
@@ -19,7 +21,8 @@ function createWindow(): void {
preload
:
path
.
join
(
__dirname
,
'
../preload/index.js
'
),
sandbox
:
false
,
nodeIntegration
:
true
,
webSecurity
:
false
webSecurity
:
false
,
allowRunningInsecureContent
:
true
}
})
...
...
@@ -41,8 +44,9 @@ function createWindow(): void {
mainWindow
.
webContents
.
session
.
webRequest
.
onHeadersReceived
((
details
,
callback
)
=>
{
callback
({
responseHeaders
:
{
'
Access-Control-Allow-Origin
'
:
[
'
*
'
],
...
details
.
responseHeaders
,
'
Access-Control-Allow-Origin
'
:
[
'
*
'
],
'
Content-Security-Policy
'
:
[
'
*
'
]
},
});
});
...
...
my-mp/src/renderer/index.html
浏览文件 @
988f1928
<!DOCTYPE html>
<html>
<head>
<head>
<meta
charset=
"UTF-8"
/>
<title>
Electron
</title>
<!-- https://www.electronjs.org/zh/docs/latest/tutorial/security -->
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
<
!-- <
meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'"
/>
</head>
/>
-->
</head>
<body>
<body>
<div
id=
"app"
></div>
<script
type=
"module"
src=
"/src/main.ts"
></script>
</body>
</html>
</body>
</html>
\ No newline at end of file
my-mp/src/renderer/src/router/index.ts
浏览文件 @
988f1928
...
...
@@ -8,10 +8,14 @@ const router = createRouter({
history
:
createWebHistory
(),
routes
:
[
{
path
:
'
/
'
,
path
:
'
/
welcome
'
,
name
:
'
welcome
'
,
component
:
welcome
},
{
path
:
'
/
'
,
redirect
:
'
/lilili
'
},
{
path
:
'
/lilili
'
,
name
:
'
lilili
'
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录