我想在我的Titanium项目中使用这个模块:https://github.com/AppWerft/TiJSPDF
要安装,我刚刚复制了项目中的“modules”文件夹,并将其添加到tiapp.xml中。
当我尝试使用它时:
require('ti.jspdf');
var doc = new jsPDF();
我收到以下错误:
- Message: Uncaught ReferenceError: jsPDF is not defined
我想我没有正确使用这个模块。你能帮我吗 ?
答案 0 :(得分:1)
由于这是一个javascript模块而不是已编译的模块,因此请将其放在合金项目的app / lib文件夹中。请在此处查看有关Javascript模块的文档:http://docs.appcelerator.com/platform/latest/#!/guide/CommonJS_Modules_in_Titanium-section-src-29004791_CommonJSModulesinTitanium-JavaScriptModules