0

我收到错误无法读取空数据绑定问题的属性“__transform”。

资源部分中相应错误的代码行:

text: "undefined" != typeof $model.__transform["topic"] ? $model.__transform["topic"] : $model.get("topic")

我假设模型没有被正确引用。这是我的模型代码。它位于模型目录的 chatThreadSQL.js 文件中:

exports.definition = {
config: {
    "columns": {
    "uuid":"TEXT UNIQUE PRIMARY KEY",
    "topic": "TEXT", 
    "created":"TEXT",
    //"patient": "",
    },
adapter: {
    "type": "sql",
    "collection_name": "chatThreadSQL_col",
    // idAttribute tells Alloy/Backbone to use this column in
    // my table as its unique identifier field. Without
    // specifying this, Alloy's default behavior is to create
    // and "alloy_id" field which will uniquely identify your
    // rows in the table with a text GUID.
    "idAttribute": "uuid"
    }
},  

extendModel: function(Model) {  
    _.extend(Model.prototype, {

        // extended functions go here

    }); // end extend

    return Model;
},


extendCollection: function(Collection) {    
    _.extend(Collection.prototype, {

        // extended functions go here

    }); // end extend

    return Collection;
}

};

我已经验证数据正在使用 adb shell 插入到 sqlite3 中。

这是我的视图定义,用于视图文件 chatHome.xml

   <TableView dataCollection="chatThreadSQL"  id="table2">
        <TableViewSection>
        <TableViewRow id="row" title="{topic}" onClick="openChats" model="{uuid}" backgroundSelectedColor="#000080">
            <Label id="title" text="{topic}"/>
            <Label id="date" text="{date}"/>
        </TableViewRow>
        </TableViewSection>
   </TableView>

在控制器/chatHome.js 中,我的文件顶部有以下行:

var chatThreads = Alloy.Collections.chatThreadSQL;

任何指针将不胜感激!

其他信息:

Application type: mobile
Titanium SDK: 3.1.3
Platform & version: Android 4.
Host Operating System: Ubuntu 13.04
4

1 回答 1

0

您将集合名称设置为chatThreadSQL_col,因此您必须在代码中以这种方式引用它。

尝试:

 <TableView dataCollection="chatThreadSQL_col"  id="table2">
        <TableViewSection>
        <TableViewRow id="row" title="{topic}" onClick="openChats" model="{uuid}" backgroundSelectedColor="#000080">
            <Label id="title" text="{topic}"/>
            <Label id="date" text="{date}"/>
        </TableViewRow>
        </TableViewSection>
   </TableView>
于 2013-10-06T19:27:12.843 回答