我有一个javascript文件,其中包含一些数据操作函数(根本没有DOM操作),例如浮点舍入,数学运算,等等
原文链接:https://www.f2er.com/angularjs/143471.html我的js文件名为myexample.js就是这样
function example(input) { return input * 2 } module.exports = { example: example }
然后我有我的角度组件example.component.ts
例如:
import { Component,EventEmitter} from '@angular/core'; @Component({ selector: 'input-number',template: `<input type='text' [(value)]='value' (blur)='runExample()' />`,inputs: ['value'],outputs: ['valueChange'] }) export class Example { value: string; valueChange = new EventEmitter; runExample() { let val = parseFloat(this.value); // here i need to call example(input) from myexample.js // and assign the return to val this.valueChange.emit(val); }
我现在已经搜索了很长一段时间并试了很多东西,但遗憾的是没有运气.
如果有人可以提供帮助,我将非常感激.