0

当我在设备上运行应用程序时,我没有收到任何错误(完全没有发生任何事情),因为没有调试控制台,但是当我在浏览器中运行应用程序时,我得到“Titanium is not defined”

我需要包含一个 js 文件吗?

我从这里得到了相机代码:http: //www.mindfiresolutions.com/Capture-Image-with-device-camera-in-IPhoneAndroid-application-using-Titanium-1912.php

我从 webview 的 html 文件中调用它。

我从头开始创建了一个新项目,我得到了同样的错误。这太令人沮丧了:

在 html 中:

<!doctype html>
<html lang="en">
    <head>

        <meta name="viewport" content="width=device-width;initial-scale=1.0 maximum-scale=1.0; user scalable=0;">

        <title>Notes</title>

        <script language="JavaScript" type="text/javascript">
            function play(locid) {
                Ti.App.fireEvent('play', {
                    locid : locid
                });
            }
        </script>

    </head>
    <body>

        <a id="Home" onclick ="play(125)" title = "" > hello </a>

    </body>

</html>

在 app.js 中:

Ti.App.addEventListener('play', function(e) 
{ 
    alert(e.locid);

});

Uncaught ReferenceError: Ti 没有在 HTML 文件中定义!!!

4

2 回答 2

0

该代码有许多因素阻止它作为独立的 app.js 工作。我想解决它带来的几个问题,然后我将直接解决 app.js,这样您就可以继续前进了。

首先,“Ti.UI.currentWindow”是您在以下情况下获取对窗口的引用的方式:

在文件“app.js”中,您有:

var win = Ti.UI.createWindow({
    url: 'win.js'
});
win.open();

在“win.js”中,你有:

var win = Ti.UI.currentWindow;
win.add(Ti.UI.createLabel({
    text: 'Hello, world!', textAlign: 'center',
    color: '#000'
}));

但是,这样构建您的应用程序不再是推荐的方法。如果您是从新开始,那就从 Alloy 开始吧。http://docs.appcelerator.com/titanium/3.0/#!/guide/Alloy_Quick_Start

如果您真正关心的只是让示例正常工作,那么下面是更新后的代码:

//Define the current window
var myWin = Ti.UI.createWindow({
    backgroundColor: 'white'
});

//Define the button to activate camera
var cameraBtn = Ti.UI.createButton({
    title: 'Click to activate Camera',
    top: 10 //Set the button position on the screen
});

cameraBtn.addEventListener('click', function () {

    //Activate camera
    Ti.Media.showCamera({
        success: function (event) {

            //Holds the captured image
            var capturedImg = event.media;

            // Condition to check the selected media
            if (event.mediaType == Ti.Media.MEDIA_TYPE_PHOTO) {

                //Define an image view with captured image
                var imgView = Ti.UI.createImageView({
                    left: 10,
                    width: 250,
                    height: 250,
                    image: capturedImg   //Set captured image
                });

                //Add the image to window for displaying
                myWin.add(imgView);
            }
        },
        cancel: function () {
            //While cancellation of the process
        },
        error: function (error) {
            // If any error occurs during the process

        }
    });
});

myWin.add(cameraBtn);
myWin.open();
于 2013-01-06T04:35:40.570 回答
0

在 WebView HTML 代码中使用“Titanium”而不是“Ti”。

于 2013-01-06T14:12:32.413 回答