- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我基本上有一个显示几个不同类别的 ViewController(用 PFQueryTableViewController
解决了这个问题)。根据我点击的单元格,将执行到下一个 ViewController 的转场,所有属于点击的 Category
的对象都应该出现。
我做了什么:
我在解析中有 2 个类。显示 Category
中对象的类(Question
)有一个指向 Category
类的指针列(填充了该指针列使用来自 Category
类对象的 objectID,对吗?)
在我的第一个 VC 中:在这里我用类别(作品)填充我的 TableView
class ChooseCategoriesVC: PFQueryTableViewController {
var textOfSelectedCell:String = ""
// Initialise the PFQueryTable tableview
override init!(style: UITableViewStyle, className: String!) {
super.init(style: style, className: className)
}
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
// Configure the PFQueryTableView
self.parseClassName = "Category"
self.textKey = "categoryName"
self.pullToRefreshEnabled = true
self.paginationEnabled = false
}
// Define the query that will provide the data for the table view
override func queryForTable() -> PFQuery! {
var query = PFQuery(className: "Category")
query.orderByAscending("categoryName")
query.whereKey("active", equalTo: true)
return query
}
//override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath, object: PFObject) -> PFTableViewCell {
var Cell = tableView.dequeueReusableCellWithIdentifier("Cell") as CustomChooseCategoriesCell!
if Cell == nil {
Cell = CustomChooseCategoriesCell(style: UITableViewCellStyle.Default, reuseIdentifier: "Cell")
}
// Extract values from the PFObject to display in the table cell
Cell.chooseCategoryLabel.text = object["categoryName"] as String!
var thumbnail = object["categoryIcon"] as PFFile
var initialThumbnail = UIImage(named: "categoryIcon")
Cell.customChooseCategoryIcon.image = initialThumbnail
Cell.customChooseCategoryIcon.file = thumbnail
Cell.customChooseCategoryIcon.loadInBackground()
return Cell
}
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
//get text of selected Cell
let indexPath = tableView.indexPathForSelectedRow()!
let selectedCell = tableView.cellForRowAtIndexPath(indexPath) as CustomChooseCategoriesCell!
textOfSelectedCell = selectedCell.chooseCategoryLabel.text!
self.performSegueWithIdentifier("vcToChooseQuestion", sender: self)
}
override func prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?) {
//Pass ObjectId of selected Category from ChooseCategoryVC to ChooseQuestionVC
var detailVC : ChooseQuestionVC = segue.destinationViewController as ChooseQuestionVC
detailVC.selectedCategoryText = textOfSelectedCell
}
}
在我的第二个 VC 中:我需要所有 detailObjects(问题
)到我的类别
class ChooseQuestionVC: PFQueryTableViewController{
var selectedCategoryText : String!
let appDelegate = UIApplication.sharedApplication().delegate as AppDelegate
// Initialise the PFQueryTable tableview
override init!(style: UITableViewStyle, className: String!) {
super.init(style: style, className: className)
}
required init(coder aDecoder: NSCoder) {
super.init(coder: aDecoder)
// Configure the PFQueryTableView
self.parseClassName = "Question"
self.textKey = "question"
self.pullToRefreshEnabled = true
self.paginationEnabled = false
}
// Define the query that will provide the data for the table view
override func queryForTable() -> PFQuery! {
var query = PFQuery(className: "Question")
query.whereKey("column", equalTo: self.appDelegate.getParseData(selectedCategoryText))
query.orderByAscending("question")
return query
}
//override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath, object: PFObject) -> PFTableViewCell {
var Cell = tableView.dequeueReusableCellWithIdentifier("Cell") as CustomChooseQuestionCell!
if Cell == nil {
Cell = CustomChooseQuestionCell(style: UITableViewCellStyle.Default, reuseIdentifier: "Cell")
}
// Extract values from the PFObject to display in the table cell
Cell.chooseQuestionLabel.text = object["question"] as String!
return Cell
}
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
performSegueWithIdentifier("nextVC", sender: self)
}
}
我在 AppDelegate 中的功能:
func getParseData(textOfSelectedCell: String) -> PFObject{
var query2 = PFQuery(className:"Category")
query2.whereKey("categoryName", equalTo: textOfSelectedCell)
query2.findObjectsInBackgroundWithBlock {
(objects: [AnyObject]!, error: NSError!) -> Void in
if error == nil {
// The find succeeded.
println("Successfully retrieved \(objects.count) scores.")
// Do something with the found objects
if let objects = objects as? [PFObject] {
for object in objects {
self.selectedObject = object
}
}
}
else {
// Log details of the failure
println("Error: \(error) \(error.userInfo!)")
}
}
println(selectedObject)
return selectedObject!
当运行这样的代码时,我总是得到错误
fatal error: unexpectedly found nil while unwrapping an Optional value
我该如何解决?
最佳答案
好的,听起来您的数据模型应该没问题,只是您尝试使用它的方式不太正确。
首先,当我们希望在 View Controller 之间传递数据并进行查询时,我们希望使用解析对象实例,而不是文本。对象保存最多的信息,指针指向对象而不是字符串。因此,您想将 textOfSelectedCell
更改为 selectedCategory
并使其成为指向 PFObject
的指针。您应该从 TableView Controller (因为它为您管理数据源)而不是从单元格中获取所选对象。获得该对象后,将其传递给第二个 View Controller (而不是字符串)。
现在,您的查询应该针对此对象而不是字符串进行。名为 func getParseData(textOfSelectedCell: String) -> PFObject{
的方法与应用委托(delegate)无关。 View Controller 应该直接进行查询,或者你应该有一个数据 Controller 类。在任何一种情况下,您实际上都不应该调用 Parse 来获取对象,因为 TableView Controller 已经拥有它。
您的解包问题与您的 getParseData
函数有关,因为它总是返回 nil。查询在后台运行,因此当函数返回时它永远不会完成...删除 getParseData
函数。
因此,您的问题查询变为:
query.whereKey("column", equalTo: self.selectedCategory)
您只需查看 PFQueryTableViewController
上的 objectAtIndexPath:
函数即可填补空白。
关于ios - 如何在 TableViews 中使用 Parse 中的指针关系?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28925558/
我发现在使用parse-node包时,不能再使用Parse.Cloud.httpRequest了。我也知道 Parse 的 Image 对象将不可用。 到目前为止,我已经能够用原生的替换一些 Pars
关闭。这个问题是opinion-based 。目前不接受答案。 已关闭 9 年前。 已锁定。这个问题及其答案是locked因为这个问题是题外话,但却具有历史意义。目前不接受新的答案或互动。 我有一个函
开源 Parse Server 是否包含用于配置新 Parse 实例的 Schema API?我试图消除手动创建应用程序的需要。 这是通过 Parse.com 提供的架构 API http://blo
我想从我的云代码发出一个 http 请求,该请求在我的客户端被调用。 最佳答案 一开始我发现这有点令人困惑,所以希望这会有所帮助。 在您的云代码中main.js Parse.Cloud.define(
这部分代码应该读入两个或更多数字(省略主 io 函数),然后是一个“+”来给出总和。使用有理数是因为稍后我将进行乘法和其他此类操作。 data Expression = Number Rationa
我似乎找不到任何关于此的官方信息:Does Parse.Config work on Parse Server?它曾经在 Parse.com 上工作,但是当我尝试迁移到 Parse.Server 时,
我正在尝试找到使用 Parse.com 添加密码要求的最佳程序。似乎最简单的方法是在保存用户数据之前使用云功能执行。我唯一的警告是,只有当密码与数据库中存储的密码不同或者用户不存在于数据库中时,我才想
我是 android 开发、应用程序开发和一般开发的初学者,我正在尝试为我的 android 应用程序设置后端数据库。我决定使用一个名为 back4app 的服务,以便获得更加用户友好的数据库体验,因
我目前正在尝试将 Facebook 登录功能添加到我的应用程序。 根据Android文档,当我添加 compile 'com.parse:parsefacebookutils-v4-android:1
我正在尝试使用 Rebol 2/3 从字符串中解析货币值,货币值的格式为: 10,50 欧元或 10,50 欧元 我在浏览了所有 PARSE 文档后想出了这段代码,我可以在 Red 中找到它,但在 R
代码: DateTimeFormat dateFormat = DateTimeFormat .getFormat("EEE MMM dd HH:mm:ss zzz y
我不再在 Parse 上看到用于导入 JSON 或 CSV 文件的导入按钮。他们是否将其移动到某个地方,或者不再可能导入这些文件类型? 最佳答案 官方原因是这样的: “[导入类按钮] 几天前被删除,因
我正在使用 PHP 从我的服务器检索一些数据。我想在 javascript 应用程序中使用这些数据,所以我正在做这样的事情: var polylines = ; $polylines 只是一个 PHP
我已经开始使用 .NET 4 System.Numerics.BigInteger Structure我遇到了一个问题。 我正在尝试解析一个包含无符号(正数)的十六进制数字的字符串。我得到一个负数。
我正在使用 PHP 从我的服务器检索一些数据。我想在 javascript 应用程序中使用这些数据,所以我正在做这样的事情: var polylines = ; $polylines 只是一个 PHP
在 Go 中,尝试将字符串转换为 time.Time 时,使用时间包的 Parse 方法不会返回预期结果。似乎问题出在时区。我想更改为 ISO 8601 结合 UTC 日期和时间。 package m
我正在尝试将此字符串模式 "4-JAN-12 9:30:14" 解析为 time.Time。 尝试了 time.Parse("2-JAN-06 15:04:05", inputString) 和许多其
从云代码和解析开始。使用this . 如何删除所有 Parse 项目以便开始创建新项目?我收到以下错误: “您想要创建一个新应用程序,还是将 Cloud Code 添加到现有应用程序中?输入“(n)e
我在解析云代码时有这个功能: Parse.Cloud.define("testfunction", function(request, response) { var username = r
最近,我在 parse.com 上做了一些测试。我现在面临在后台作业中使用 Parse.Object.saveAll 的问题。 从 parse.com 的文档来看,后台作业可以运行 15 分钟。我现在
我是一名优秀的程序员,十分优秀!