vue3关于在线考试 实现监考功能 推流拉流

vue3 关于在线考试 实现监考功能,

pc端考试 本质是直播推流的功能

使用腾讯云直播: 在线文档

index.html

DOCTYPE html>
<html lang="en">

<head>
	<meta charset="UTF-8">
	<link rel="icon" href="/favicon.ico">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>xxx/title>
head>
<style>
style>

<body>
	<div id="app">div>
	<script type="module" src="/src/main.ts">script>
	<script src="https://video.sdk.qcloudecdn.com/web/TXLivePusher-2.1.1.min.js" charset="utf-8">script>
body>
<script type="text/javascript">
	window.TXLivePusher = TXLivePusher
script>

html>

TXLivePusher.js

class TXLivePusher {
   
	static onWarningCode(code) {
   
		const msg 

你可能感兴趣的:(javascript,前端,开发语言)