0

我正在使用 Worklight 构建一个使用本地存储的应用程序。我createCollection()在 common/js/myApp.js 中声明了一个函数。

但是,当我在浏览器模拟器上运行它时,控制台 JavaScript 显示:

未捕获的类型错误:无法调用未定义的方法“initCollection”。

有什么建议么?

我的 JavaScript:

function wlCommonInit(){
// Common initialization code goes here
}

// inizializzazione json
window.onload = createCollection;

var isOpen = true;
var menuboxw = $("#menubox").css("width");
$("#contentbox").css("left",menuboxw);
var headerh = $("#header").height();
$("#contentbox").css("top", headerh);
$("#menu_btn").click(function(){menu()});

// apertura/chiusura menu principale
function menu() {
if(isOpen){
    $('#contentbox').animate({ left: -5 }, 1);
    $("#menubox").css("visibility", "hidden");
    isOpen = false;
}
else{
    $('#contentbox').animate({ left: menuboxw }, 1);
    $("#menubox").css("visibility", "visible");
    isOpen = true;
}
}

// creazione collection 'canti' e 'categorie'
function createCollection(){

WL.Logger.debug("Called createCollection");
WL.SimpleDialog.show("Message", "createCollection called", [{text: "Ok"}]);

var collectionCanti = "canti";
var searchFieldsCanti = {titolo: "string", autore: "string", id_categoria: "string", testo: "string"};
var collectionCategorie = "categorie";
var searchFieldsCategorie = {titolo: "string", attiva: "number"};

var success = function(data){
            logMessage("Collection created successfully " + data);
};

var failure = function(data){
            logMessage("Collection doesn't created " + data);
};

var options = {onSuccess: success, onFailure: failure};

canti = WL.JSONStore.initCollection(collectionCanti, searchFieldsCanti, options);
categorie = WL.JSONStore.initCollection(collectionCategorie, searchFieldsCategorie, options);

}
4

1 回答 1

1

请执行下列操作:

  1. 消除window.onload = createCollection;
  2. createCollection();在里面添加wlCommonInit()

顺便说一句,这logMessage会产生错误。可能应该更改为WL.Logger.debug(您已经在代码中使用...)。


阅读 IBM Worklight 入门培训材料。没有跳过。

于 2013-10-04T11:24:13.817 回答