3
在Appcelerator Titanium移動應用程序中使用JavaScript「類」作爲CommonJS模塊而不是使用函數/對象表示法來創建新的「類」(或者如何調用他們在javascript中)?Appcelerator Titanium中的OOP CommonJS
var module = require('lib/module');
代替
var object = new MyClass();
有什麼缺點?