我想在我的Ember应用程序的一个组件中使用Cytoscape扩展cytoscape-qtip
,该组件已经使用Cytoscape.js作为绘制图形的依赖项。
Cytoscape.js本身已经通过bower bower install cytoscape
安装并通过ember-cli-build.js导入,已成功连接到Ember:
:
// in my-ember-app/ember-cli-build.js
// ....
app.import('bower_components/cytoscape/dist/cytoscape.js');
return app.toTree();
在我的cytoscape-graph
组件中,我可以使用开箱即用的cytoscape
全局变量:
:
import Ember from 'ember';
export default Ember.Component.extend({
didInsertElement(){
let container = this.$();
// ...
var cy = cytoscape({
container: container,
// ... styles, layout, element selection
}); // this cytoscape instance renders fine!
使用此方法访问全局cytoscape
可以正常工作。
虽然,当我通过bower安装cytoscape-qtip
时,请将类似于cytoscape
的依赖项导入我ember-cli-build.js
的应用中,如下所示:
:
// ...
module.exports = function(defaults) {
var app = new EmberApp(defaults, {
// ;....
});
// ....
app.import('bower_components/cytoscape/dist/cytoscape.js');
app.import('bower_components/cytoscape-qtip/cytoscape-qtip.js');
return app.toTree();
};
并尝试在qtip
组件中使用cytoscape-graph
方法:
:
// ....
didInsertElement(){
// ....
cy.on('mouseover', 'node', function(event) {
var node = event.cyTarget;
node.qtip({
content: 'hello',
show: {
event: event.type,
ready: true
},
hide: {
event: 'mouseout unfocus'
}
}, event);
});
触发任何图形节点上的鼠标悬停事件后,我将收到以下控制台错误:
Uncaught TypeError: qtip.$domEle.qtip is not a function(…)
表示qtip本身尚未在我的组件中定义。 A similar question asked here对我的问题没有帮助,因为那里的人问jquery
按正确顺序加载有问题。在我的情况下,jquery
已经包含在我的应用中,并且运行正常。
如何在我的Ember应用中添加cytoscape-qtip
扩展程序,以便在我的组件中使用qtip
?
答案 0 :(得分:0)
您必须完全按照自述文件中的说明按照说明注册扩展及其依赖项:
对于CommonJS(例如npm + browserify或npm + webpack):
var cytoscape = require('cytoscape');
var jquery = require('jquery');
var cyqtip = require('cytoscape-qtip');
cyqtip( cytoscape, jquery ); // register extension
对于ES6样式(支持ES6的任何工具):
import cytoscape from 'cytoscape';
import jquery from 'jquery';
import cyqtip from 'cytoscape-qtip';
cyqtip( cytoscape, jquery ); // register extension
无论哪种方式都是相同的。
Qtip必须注册到jQuery,所以你可能必须先在全局公开jQuery:
window.$ = window.jQuery = require('jquery');
require('qtip');
答案 1 :(得分:0)
time