如何在Symfony视图中调用Require JS模块定义的变量和方法

时间:2018-06-06 11:19:10

标签: javascript php symfony symfony-2.8 orocrm

我在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>

我的问题是如何从视图中获取countprint("Hello World")方法的值

0 个答案:

没有答案