- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在尝试整合 ECharts按照本指南进入 Ionic (4) 应用程序:
https://golb.hplar.ch/2017/02/Integrate-ECharts-into-an-Ionic-2-app.html
我按如下方式安装了所有模块(我添加了“ionic info”输出):
D:\e-charts-debug>ionic info
√ Gathering environment info - done!
Ionic:
ionic (Ionic CLI) : 4.1.1
Ionic Framework : ionic-angular 3.9.2
@ionic/app-scripts : 3.2.0
Cordova:
cordova (Cordova CLI) : 8.0.0
Cordova Platforms : none
Cordova Plugins : no whitelisted plugins (0 plugins total)
System:
NodeJS : v8.11.4 (C:\Program Files\nodejs\node.exe)
npm : 5.6.0
OS : Windows 10
D:\e-charts-debug>npm install echarts -S
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
+ echarts@4.2.0-rc.2
added 2 packages in 176.695s
D:\e-charts-debug>npm install ngx-echarts -S
npm WARN ngx-echarts@4.0.0 requires a peer of @angular/common@^6.0.0-rc.0 || >=6.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN ngx-echarts@4.0.0 requires a peer of @angular/core@^6.0.0-rc.0 || >=6.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN ngx-echarts@4.0.0 requires a peer of echarts@>=3.1.1 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
+ ngx-echarts@4.0.0
added 1 package in 108.986s
D:\e-charts-debug>npm install @types/echarts -D
npm WARN ngx-echarts@4.0.0 requires a peer of @angular/common@^6.0.0-rc.0 || >=6.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN ngx-echarts@4.0.0 requires a peer of @angular/core@^6.0.0-rc.0 || >=6.0.0 but none is installed. You must install peer dependencies yourself.
npm WARN ngx-echarts@4.0.0 requires a peer of echarts@>=3.1.1 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
+ @types/echarts@4.1.1
added 1 package in 108.858s
我还修改了tsconfig.json
和 app.module.ts
如下:
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": false,
...
"baseUrl": ".",
"paths": {
"echarts": ["node_modules/echarts/dist/echarts.min.js"]
}
}
应用程序模块.ts:
import {NgxEchartsModule} from "ngx-echarts";
...
@NgModule({
declarations: [
MyApp,
HomePage
],
imports: [
BrowserModule,
NgxEchartsModule,
IonicModule.forRoot(MyApp)
],
...
在 home.ts 和 home.html 中,我只是像示例一样添加了一个图表:
主页.ts:
import { EChartOption } from 'echarts';
@Component({
selector: 'page-home',
templateUrl: 'home.html'
})
export class HomePage {
chartOption: EChartOption = {
xAxis: {
type: 'category',
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
},
yAxis: {
type: 'value'
},
series: [{
data: [820, 932, 901, 934, 1290, 1330, 1320],
type: 'line'
}]
}
}
主页.html:
<ion-content padding>
<div echarts [options]="chartOption" class="demo-chart"></div>
</ion-content>
但是,当我为应用程序提供服务时,出现此错误:
Error: Uncaught (in promise): TypeError: Object(...) is not a function
TypeError: Object(...) is not a function
at ChangeFilter.notFirstAndEmpty (http://localhost:8101/build/vendor.js:181834:67)
at NgxEchartsDirective.ngOnChanges (http://localhost:8101/build/vendor.js:181941:16)
at checkAndUpdateDirectiveInline (http://localhost:8101/build/vendor.js:13831:19)
at checkAndUpdateNodeInline (http://localhost:8101/build/vendor.js:15359:20)
at checkAndUpdateNode (http://localhost:8101/build/vendor.js:15302:16)
at debugCheckAndUpdateNode (http://localhost:8101/build/vendor.js:16195:76)
at debugCheckDirectivesFn (http://localhost:8101/build/vendor.js:16136:13)
at Object.eval [as updateDirectives] (ng:///AppModule/HomePage.ngfactory.js:40:5)
at Object.debugUpdateDirectives [as updateDirectives] (http://localhost:8101/build/vendor.js:16121:21)
at checkAndUpdateView (http://localhost:8101/build/vendor.js:15268:14)
at c (http://localhost:8101/build/polyfills.js:3:19752)
at Object.reject (http://localhost:8101/build/polyfills.js:3:19174)
at NavControllerBase._fireError (http://localhost:8101/build/vendor.js:74789:16)
at NavControllerBase._failed (http://localhost:8101/build/vendor.js:74782:14)
at http://localhost:8101/build/vendor.js:74829:59
at t.invoke (http://localhost:8101/build/polyfills.js:3:14976)
at Object.onInvoke (http://localhost:8101/build/vendor.js:6184:33)
at t.invoke (http://localhost:8101/build/polyfills.js:3:14916)
at r.run (http://localhost:8101/build/polyfills.js:3:10143)
at http://localhost:8101/build/polyfills.js:3:20242
这只是导入问题还是版本问题?如果是这样,我该如何解决?
感谢您的帮助!
编辑:
就像下面的答案所建议的那样,我尝试安装一个较旧的 ngx-echarts 版本(我的 Angular 版本是 5.2.10
):
D:\e-charts-2.0.0>npm install echarts -S
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
+ echarts@4.2.0-rc.2
added 2 packages in 38.188s
D:\e-charts-2.0.0>npm install ngx-echarts@2.2.0 -S
npm WARN ngx-echarts@2.2.0 requires a peer of echarts@>=3.1.1 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
+ ngx-echarts@2.2.0
added 1 package in 31.035s
D:\e-charts-2.0.0>npm install @types/echarts -D
npm WARN ngx-echarts@2.2.0 requires a peer of echarts@>=3.1.1 but none is installed. You must install peer dependencies yourself.
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.2.4 (node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.2.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"win32","arch":"x64"})
+ @types/echarts@4.1.1
added 1 package in 16.213s
现在我在“echarts peer”上看到一个奇怪的 npm 警告,因为我的版本应该没问题。
当我使用 ionic serve
启动我的应用程序时我得到这个错误:
Error: Uncaught (in promise): ReferenceError: echarts is not defined
ReferenceError: echarts is not defined
at http://localhost:8100/build/vendor.js:123341:61
at t.invoke (http://localhost:8100/build/polyfills.js:3:14976)
at r.run (http://localhost:8100/build/polyfills.js:3:10143)
at NgZone.runOutsideAngular (http://localhost:8100/build/vendor.js:5082:69)
at NgxEchartsDirective.createChart (http://localhost:8100/build/vendor.js:123341:29)
at NgxEchartsDirective.onOptionsChange (http://localhost:8100/build/vendor.js:123396:36)
at SafeSubscriber._next (http://localhost:8100/build/vendor.js:123363:76)
at SafeSubscriber.__tryOrSetError (http://localhost:8100/build/vendor.js:35962:16)
at SafeSubscriber.next (http://localhost:8100/build/vendor.js:35902:27)
at Subscriber._next (http://localhost:8100/build/vendor.js:35840:26)
at c (http://localhost:8100/build/polyfills.js:3:19752)
at Object.reject (http://localhost:8100/build/polyfills.js:3:19174)
at NavControllerBase._fireError (http://localhost:8100/build/vendor.js:51258:16)
at NavControllerBase._failed (http://localhost:8100/build/vendor.js:51251:14)
at http://localhost:8100/build/vendor.js:51298:59
at t.invoke (http://localhost:8100/build/polyfills.js:3:14976)
at Object.onInvoke (http://localhost:8100/build/vendor.js:5134:33)
at t.invoke (http://localhost:8100/build/polyfills.js:3:14916)
at r.run (http://localhost:8100/build/polyfills.js:3:10143)
at http://localhost:8100/build/polyfills.js:3:20242
我使用了一个新项目,执行相同的导入过程,除了安装了不同的 ngx-echarts 版本。
编辑 2
这是我的 index.html:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>Ionic App</title>
<meta name="viewport" content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta name="msapplication-tap-highlight" content="no">
<link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico">
<link rel="manifest" href="manifest.json">
<meta name="theme-color" content="#4e8ef7">
<!-- add to homescreen for ios -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- cordova.js required for cordova apps (remove if not needed) -->
<script src="cordova.js"></script>
<script src="../node_modules/echarts/dist/echarts.min.js"></script>
<!-- un-comment this code to enable service worker
<script>
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('service-worker.js')
.then(() => console.log('service worker installed'))
.catch(err => console.error('Error', err));
}
</script>-->
<link href="build/main.css" rel="stylesheet">
</head>
<body>
<!-- Ionic's root component and where the app will load -->
<ion-app></ion-app>
<!-- The polyfills js is generated during the build process -->
<script src="build/polyfills.js"></script>
<!-- The vendor js is generated during the build process
It contains all of the dependencies in node_modules -->
<script src="build/vendor.js"></script>
<!-- The main bundle js is generated during the build process -->
<script src="build/main.js"></script>
</body>
</html>
这是我的 tsconfig.json:
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"dom",
"es2015"
],
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"target": "es5",
"baseUrl": ".",
"paths": {
"echarts": ["node_modules/echarts/dist/echarts.min.js"]
}
},
"include": [
"src/**/*.ts"
],
"exclude": [
"node_modules",
"src/**/*.spec.ts",
"src/**/__tests__/*.ts"
],
"compileOnSave": false,
"atom": {
"rewriteTsconfig": false
}
}
包括<script src="../node_modules/echarts/dist/echarts.min.js"></script>
之后在 index.html 文件中,错误仍然存在:
Error: Uncaught (in promise): ReferenceError: echarts is not defined ReferenceError: echarts is not defined
最佳答案
您使用的似乎是 Angular 5x 版本,但您使用的 ngx-echarts 版本是与 Angular 6 兼容的。从这个警告看来 -
npm WARN ngx-echarts@4.0.0 requires a peer of @angular/core@^6.0.0-rc.0 || >=6.0.0 but none is installed.
在ngx-echarts的README中也有提到
Latest version @npm:
v4.0.0 for Angular >= 6
v2.3.1 for Angular < 6 (Please refer to https://github.com/xieziyu/ngx-echarts/blob/v2.x/README.md)
Github branches:
master for Angular >= 6
v2.x for Angular < 6
这是 Github 中的一个类似问题 https://github.com/xieziyu/ngx-echarts/issues/113
所以你可以像这样安装它-
npm install ngx-echarts@2.2.0 -S
或者您可以在 package.json 中为 ngx-echarts
指定版本
更新的答案
查看您的项目后,您的 ionic 应用程序似乎未正确加载 echarts.min.js
的路径。所以我在 ionic 项目的根 index.html
文件中包含了 echarts.min.js
的路径。它现在正在工作-
这是添加的代码-
<html>
<head>
<script src="../node_modules/echarts/dist/echarts.min.js"></script>
</head>
<body>
<my-app>loading</my-app>
</body>
</html>
您需要根据您的项目结构调整路径。这是我使用您正在使用的相同包版本创建的 stackblitz 示例。
https://stackblitz.com/edit/angular-eml14x
您还可以在此处查看 2x 版本的指南。
https://github.com/xieziyu/ngx-echarts/tree/v2.x
第二次更新
上述更改适用于 angular cli,但对于 ionic,构建后脚本文件应该在 www
文件夹中可用,因此您可以复制 echarts.min.js
文件从 ../node_modules/echarts/dist/echarts.min.js
到你的 src/assets
文件夹,并在你的 索引中使用以下路径.html
.
<script src="assets/echarts.min.js"></script>
请检查您的 tsconfig.json 文件的位置,echarts
库的路径取决于 baseUrl
中给出的路径。检查这个 https://www.typescriptlang.org/docs/handbook/module-resolution.html
关于javascript - TypeError : Object(. ..) 不是带有 ECharts 的 Ionic 4 应用程序中的函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52958385/
我有一个 html 格式的表单: 我需要得到 JavaScript在value input 字段执行,但只能通过表单的 submit .原因是页面是一个模板所以我不控制它(不能有
我管理的论坛是托管软件,因此我无法访问源代码,我只能向页面添加 JavaScript 来实现我需要完成的任务。 我正在尝试用超链接替换所有页面上某些文本关键字的第一个实例。我还根据国家/地区代码对这些
我正在使用 JS 打开新页面并将 HTML 代码写入其中,但是当我尝试使用 document.write() 在新页面中编写 JS 时功能不起作用。显然,一旦看到 ,主 JS 就会关闭。用于即将打开的
提问不是为了解决问题,提问是为了更好地理解系统 专家!我知道每当你将 javascript 代码输入 javascript 引擎时,它会立即由 javascript 引擎执行。由于没有看过Engi
我在一个文件夹中有两个 javascript 文件。我想将一个变量的 javascript 文件传递到另一个。我应该使用什么程序? 最佳答案 window.postMessage用于跨文档消息。使
我有一个练习,我需要输入两个输入并检查它们是否都等于一个。 如果是 console.log 正则 console.log false 我试过这样的事情: function isPositive(fir
我正在做一个Web应用程序,计划允许其他网站(客户端)在其页面上嵌入以下javascript: 我的网络应用程序位于 http://example.org 。 我不能假设客户端网站的页面有 JQue
目前我正在使用三个外部 JS 文件。 我喜欢将所有三个 JS 文件合而为一。 尽一切可能。我创建 aio.js 并在 aio.js 中 src="https://code.jquery.com/
我有例如像这样的数组: var myArray = []; var item1 = { start: '08:00', end: '09:30' } var item2 = {
所以我正在制作一个 Chrome 扩展,它使用我制作的一些 TamperMonkey 脚本。我想要一个“主”javascript 文件,您可以在其中包含并执行其他脚本。我很擅长使用以下行将其他 jav
我有 A、B html 和 A、B javascript 文件。 并且,如何将 A JavaScript 中使用的全局变量直接移动到 B JavaScript 中? 示例 JavaScript) va
我需要将以下整个代码放入名为 activate.js 的 JavaScript 中。你能告诉我怎么做吗? var int = new int({ seconds: 30, mark
我已经为我的 .net Web 应用程序创建了母版页 EXAMPLE1.Master。他们的 I 将值存储在 JavaScript 变量中。我想在另一个 JS 文件中检索该变量。 示例1.大师:-
是否有任何库可以用来转换这样的代码: function () { var a = 1; } 像这样的代码: function () { var a = 1; } 在我的浏览器中。因为我在 Gi
我收到语法缺失 ) 错误 $(document).ready(function changeText() { var p = document.getElementById('bidp
我正在制作进度条。它有一个标签。我想调整某个脚本完成的标签。在找到可能的解决方案的一些答案后,我想出了以下脚本。第一个启动并按预期工作。然而,第二个却没有。它出什么问题了?代码如下: HTML:
这里有一个很简单的问题,我简单的头脑无法回答:为什么我在外部库中加载时,下面的匿名和onload函数没有运行?我错过了一些非常非常基本的东西。 Library.js 只有一行:console.log(
我知道 javascript 是一种客户端语言,但如果实际代码中嵌入的 javascript 代码以某种方式与在控制台上运行的代码不同,我会尝试找到答案。让我用一个例子来解释它: 我想创建一个像 Mi
我如何将这个内联 javascript 更改为 Unobtrusive JavaScript? 谢谢! 感谢您的回答,但它不起作用。我的代码是: PHP js文件 document.getElem
我正在寻找将简单的 JavaScript 对象“转储”到动态生成的 JavaScript 源代码中的最优雅的方法。 目的:假设我们有 node.js 服务器生成 HTML。我们在服务器端有一个对象x。
我是一名优秀的程序员,十分优秀!