导入文件错误“.后缺少名称”运算符”钛

发布于 2024-11-29 05:15:05 字数 541 浏览 1 评论 0原文

当我在 Titanium 中导入文件时,我的行前面有一个红十字标记,显示

missing name after . operator

我的代码在第一行和第二行中是这样的,

Ti.App.import('win1.js');
Ti.App.import('win2.js');

// Create tabgroup and tabs
var tabGroup = Titanium.UI.createTabGroup({});
var tab1 = Titanium.UI.createTab({
    title: win1.title,
    window: win1
});
var tab2 = Titanium.UI.createTab({
    title: win2.title,
    window: win2
});
tabGroup.addTab(tab1);
tabGroup.addTab(tab2);
tabGroup.open({});

尽管我已经创建了这两个文件,但我遇到了此类错误......

when i import my file in Titanium, i have a red cross mark in front of my line showing

missing name after . operator

my code goes like this way

Ti.App.import('win1.js');
Ti.App.import('win2.js');

// Create tabgroup and tabs
var tabGroup = Titanium.UI.createTabGroup({});
var tab1 = Titanium.UI.createTab({
    title: win1.title,
    window: win1
});
var tab2 = Titanium.UI.createTab({
    title: win2.title,
    window: win2
});
tabGroup.addTab(tab1);
tabGroup.addTab(tab2);
tabGroup.open({});

in first and second line i have such type of error though i have created those two files....

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

站稳脚跟 2024-12-06 05:15:05

使用

Ti.include('relative-path-for-file-to-include.js');

Titanium.include('relative-path-for-file-to-include.js');

代替。

Use

Ti.include('relative-path-for-file-to-include.js');

or

Titanium.include('relative-path-for-file-to-include.js');

instead.

2024-12-06 05:15:05

我发现这种方法可以将其他文件包含在钛中......并且它对我有用。

Titanium.include("page1.js");

i found this way of including other files in titanium.... and it worked for me.

Titanium.include("page1.js");
要走就滚别墨迹 2024-12-06 05:15:05

它应该是:

#include "win1.js";

It should be:

#include "win1.js";

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文