gpt4 book ai didi

listview - BlackBerry Cascades 中的 ListView 崩溃

转载 作者:行者123 更新时间:2023-12-03 17:39:32 25 4
gpt4 key购买 nike

我正在使用 ListView在我的 Cascades 应用程序中,我在 QML 中做大​​部分事情。这里是 attachedObjects: [ ]里面ListView :

attachedObjects: [
FmnModel {
id: fmnModel
},
FmnListModel {
id: asynkDataSource
source: "sql/fgmt.db"
query: "SELECT lists.id, lists.name, (SELECT COUNT(1) FROM tasks WHERE tasks.listid=lists.id AND tasks.status=\"Pending\") AS pendings FROM lists"

onDataLoaded: {
if(data.length > 0) {
fmnModel.insertList(data);
}
}
}
] // Attached Objects

将下一页加载到 NavigationPane 的代码:

property variant taskpaged
onTriggered: {
taskpaged = taskPageDefinition.createObject();
navPane.push(taskpaged);

taskpaged.back.connect(navPane.pop);
}

所以当我点击 taskpaged 中的“返回”时页面,应用程序崩溃。知道为什么吗?还是我需要提供更多代码? (如果是,是哪个?)

最佳答案

可能会引发一些错误,但如果您从一个页面开始然后推送另一个页面,您将看不到它们。让您的应用指向 (taskpage) 作为要加载的第一页。你会看到有很多异常(exception)。修复它们然后返回原始代码

关于listview - BlackBerry Cascades 中的 ListView 崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14055674/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com