离子使用 video.js 抛出错误
ionic use video.js throws error
我尝试使用 video.js 作为我的视频播放器,但出现错误:
Uncaught (in promise): Error: Cannot find module "safe-json-parse/tuple" Error: Cannot find module "safe-json-parse/tuple"
我执行的步骤:
- npm 安装-S video.js
- 从 'video.js' 导入 videojs;
- 在 palyer.ts 中编写代码 => videojs('my-player', { controls: true});
- 点击播放器页面出现以上错误
有人知道吗?或者其他什么第 3 方 html5 视频播放器可以轻松插入?
环境详情:
ionic info
全局包:
@ionic/cli-utils : 1.4.0
Cordova CLI : 7.0.1
Ionic CLI : 3.4.0
本地包:
@ionic/app-scripts : 1.3.7
@ionic/cli-plugin-cordova : 1.4.0
@ionic/cli-plugin-ionic-angular : 1.3.1
Cordova Platforms : android 6.2.3
Ionic Framework : ionic-angular 3.3.0
系统:
Node : v6.10.3
OS : Linux 4.10
Xcode : not installed
ios-deploy : not installed
ios-sim : not installed
npm : 3.10.10
我将 videojs js 和 css 文件下载到 assets/ 文件夹并在 index.html
中引用它们。
通过这种方式 videojs 可以工作,虽然不如 npm 包那么优雅
我做了同样的事情,我有一个安全的-json-parse 模块所以我认为我很好,但是在做之后:
npm install -s safe-json-parse
添加了新文件,错误消失了。
我尝试使用 video.js 作为我的视频播放器,但出现错误:
Uncaught (in promise): Error: Cannot find module "safe-json-parse/tuple" Error: Cannot find module "safe-json-parse/tuple"
我执行的步骤:
- npm 安装-S video.js
- 从 'video.js' 导入 videojs;
- 在 palyer.ts 中编写代码 => videojs('my-player', { controls: true});
- 点击播放器页面出现以上错误
有人知道吗?或者其他什么第 3 方 html5 视频播放器可以轻松插入?
环境详情:
ionic info
全局包:
@ionic/cli-utils : 1.4.0
Cordova CLI : 7.0.1
Ionic CLI : 3.4.0
本地包:
@ionic/app-scripts : 1.3.7
@ionic/cli-plugin-cordova : 1.4.0
@ionic/cli-plugin-ionic-angular : 1.3.1
Cordova Platforms : android 6.2.3
Ionic Framework : ionic-angular 3.3.0
系统:
Node : v6.10.3
OS : Linux 4.10
Xcode : not installed
ios-deploy : not installed
ios-sim : not installed
npm : 3.10.10
我将 videojs js 和 css 文件下载到 assets/ 文件夹并在 index.html
中引用它们。
通过这种方式 videojs 可以工作,虽然不如 npm 包那么优雅
我做了同样的事情,我有一个安全的-json-parse 模块所以我认为我很好,但是在做之后:
npm install -s safe-json-parse
添加了新文件,错误消失了。