在Django管理器中返回空的查询集

时间:2017-03-26 06:02:04

标签: python django django-1.10

如何在Django管理器中返回空的查询集?

func checkBox(cell: CustomCell) {
    guard let indexPath = self.tableView.indexPath(for: cell) else{
    return
    }
    print("Button tapped on row \(indexPath.row)")

    let task=tasks[indexPath.row]
    task.checkDone="on"
    (UIApplication.shared.delegate as! AppDelegate).saveContext()

}

1 个答案:

答案 0 :(得分:1)

找出答案。

这是return self.none()