从钛合金中调用index.js方法

时间:2014-10-12 14:32:55

标签: titanium titanium-alloy

我可以从index.js调用alloy.js类文件的变量和函数,但我想调用index.js的alloy.js中的方法。如何完成它?我试图decalre require(index.js或index)但是徒劳无功,它会弹出一个错误并使应用程序崩溃。

index.js 

 todo_method{

}

alloy.js

//call todo_method(); of index.js

1 个答案:

答案 0 :(得分:0)

以下是如何做到这一点:

<强> index.js

$.sayHello = function() { // Or you can use `exports.sayHello` too
    console.log("Hello");
};

<强> alloy.js

var index = Alloy.createController("index");
    index.sayHello(); // Call function defined in index.js