我在Oro上创建了一个jsModule,并声明了一个变量,如下面的
define(['oroui/js/app/components/base/component'], function (BaseComponent) {
'use strict';
var $ = require('jquery');
var PrinterComponent = BaseComponent.extend({
initialize: function (options) {
var count = 0;
}
function print($word){
//printing Script
}
...... Some Other Functions
})
return PrinterComponent;
});
在我看来,我正在加载这样的js,如下所示
<div data-page-component-module="spriibarcode/js/app/components/barcode-scan-component"></div>
我的问题是如何从视图中获取count
和print("Hello World")
方法的值