jQuery.verto 不是构造函数

jQuery.verto is not a constructor

我在基于 Vue-CLI 的项目中使用 Verto library - 我已将所有必要的文件复制到我的 static 文件夹中,并将其作为文件直接导入到我的 [=14] =] 文件 - 像这样:

<script src="static/js/jquery.min.js"></script> // I've also tried with including jQuery in webpack config, but with the same result
<script src="static/js/jquery.json.min.js"></script>
<script src="static/js/jquery.verto.js"></script>
<script src="static/js/jquery.FSRTC.js"></script>
<script src="static/js/jquery.jsonrpcclient.js"></script>

在我的组件方法中,我有这样的东西:

connectAudio () {
  /* eslint-disable new-cap */
  const verto = new jQuery.verto({
  ...

但是一旦我执行它,我收到一个错误:"TypeError: jQuery.verto is not a constructor"

有人可以帮我解决这个问题吗?

确保您按照文档的建议在 verto init 回调中调用 new jQuery.verto({})

示例:$.verto.init({}, function(){ ... new jQuery.verto({...}) ... }).

不确定你是否已经这样做了,我无法通过你分享的代码片段来判断。