我用Titanium开发示例android应用程序。在首页窗口(app.js)它有一些按钮,现在我想要的是点击每个按钮app.js(首页窗口)必须调用另一个javascript文件(他们将创建自己的新窗口。
but.addEventListener('click', function(e){
call another .js file which will open new window
})
将会感谢一些指导
如何将首页命名为首页,并渲染索引文件的数据。但是在尝试这样做的时候,它给了我错误。 Server.js:: app.get('/', function(req,res) {
res.end('Home page')
res.render('index')
}); 错误: [ERR_HTTP_HEADERS_SENT]: Cannot set headers after they are sent to the client