Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
yma16
myblogVue_django
提交
86b35688
M
myblogVue_django
项目概览
yma16
/
myblogVue_django
通知
5
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
myblogVue_django
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
86b35688
编写于
5月 22, 2022
作者:
yma16
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix:聊天室配置
上级
dc48cf1e
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
15 addition
and
10 deletion
+15
-10
config/index.js
config/index.js
+1
-1
src/App.vue
src/App.vue
+1
-2
src/comment/ArticleComment.vue
src/comment/ArticleComment.vue
+11
-5
src/components/Article.vue
src/components/Article.vue
+1
-1
src/components/Onlinewebsocket.vue
src/components/Onlinewebsocket.vue
+1
-1
未找到文件。
config/index.js
浏览文件 @
86b35688
...
...
@@ -20,7 +20,7 @@ module.exports = {
},
},
"
/ws_api/
"
:
{
target
:
"
ws
://yongma16.xyz/
"
,
target
:
"
http
://yongma16.xyz/
"
,
ws
:
true
,
//接受websocket请求
changeOrigin
:
true
,
//是否允许跨越
chunkOrigins
:
true
,
...
...
src/App.vue
浏览文件 @
86b35688
...
...
@@ -152,8 +152,7 @@ export default {
"
https://fuss10.elemecdn.com/1/8e/aeffeb4de74e2fde4bd74fc7b4486jpeg.jpeg
"
,
],
headerData
:
[
"
从现在开始,种一棵树
"
,
"
从现在开始,种一棵树
"
],
readCount
:
0
,
currentUserName
:
""
,
readCount
:
0
};
},
computed
:
{
...
...
src/comment/ArticleComment.vue
浏览文件 @
86b35688
...
...
@@ -52,10 +52,16 @@ export default {
contentRes
:
[],
userId
:
"
匿名
"
,
articleCommit
:
""
,
childArticleId
:
""
,
};
},
watch
:
{
articleId
:
function
(
newData
)
{
this
.
childArticleId
=
newData
;
},
},
mounted
()
{
articleId
&&
this
.
getComments
(
);
this
.
childArticleId
&&
this
.
getComments
(
this
.
childArticleId
);
},
methods
:
{
dateToString
(
dateValue
)
{
...
...
@@ -105,11 +111,11 @@ export default {
item
.
date
=
that
.
dateToString
(
item
.
date
);
});
}
catch
(
e
)
{
throw
Error
(
e
)
throw
Error
(
e
)
;
}
})
.
catch
((
r
)
=>
{
throw
Error
(
r
)
throw
Error
(
r
)
;
});
},
increment
(
userId
,
articleId
,
content
)
{
...
...
@@ -149,7 +155,7 @@ export default {
item
.
date
=
that
.
dateToString
(
item
.
date
);
});
}
catch
(
e
)
{
throw
Error
(
e
)
throw
Error
(
e
)
;
}
})
.
catch
((
r
)
=>
{
...
...
@@ -158,7 +164,7 @@ export default {
path
:
"
/login
"
,
})
.
catch
((
error
)
=>
{
throw
Error
(
error
)
throw
Error
(
error
)
;
});
throw
Error
(
r
);
});
...
...
src/components/Article.vue
浏览文件 @
86b35688
...
...
@@ -396,7 +396,7 @@ export default {
});
break
;
case
"
vue3测试平台
"
:
window
.
open
(
"
http://yongma16.xyz/
"
+
"
emoji_api/index
/
"
);
window
.
open
(
"
http://yongma16.xyz/
emoji_api
/
"
);
break
;
default
:
break
;
...
...
src/components/Onlinewebsocket.vue
浏览文件 @
86b35688
...
...
@@ -344,7 +344,7 @@ export default {
console
.
log
(
"
创建房间出错
"
,
e
);
}
this
.
chatRoomIndex
=
chatRoomIndex
;
const
wsUrl
=
this
.
websocketUrl
+
"
w
s/webchat
/
"
;
const
wsUrl
=
this
.
websocketUrl
+
"
w
ebchat/room
/
"
;
this
.
websocket
=
new
WebSocket
(
wsUrl
+
room
+
"
/
"
);
// 连接
console
.
log
(
this
.
websocket
,
"
聊天室
"
);
this
.
websocket
.
onmessage
=
this
.
websocketMessage
;
// 函数指向
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录