Browse Source
判断当前页面协议选择播放连接
在https页面下会因为使用ws_flv连接导致播放失败, 所以对当前页面的协议进行判断
pull/343/head
SaltFish
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
1 deletions
-
web_src/src/components/live.vue
|
|
@ -178,7 +178,11 @@ |
|
|
|
console.log(res) |
|
|
|
if (res.data.code == 0 && res.data.data) { |
|
|
|
itemData.playUrl = res.data.data.httpsFlv |
|
|
|
that.setPlayUrl(res.data.data.ws_flv,idxTmp) |
|
|
|
if(window.location.protocol === 'https:'){ |
|
|
|
that.setPlayUrl(res.data.data.wss_flv,idxTmp) |
|
|
|
} else { |
|
|
|
that.setPlayUrl(res.data.data.ws_flv,idxTmp) |
|
|
|
} |
|
|
|
}else { |
|
|
|
that.$message.error(res.data.msg); |
|
|
|
} |
|
|
|