我对cdkDrag有问题。它工作正常,但现在发生了一些奇怪的事情,我可以拖动一个项目,但看不到拖放区。我可以在整个DOM中拖放项目,但不能将其拖放到放置区域中。之间有五个列表,我想拖放项目。
应该拖动带有卡片标题的项目,但带有留在列表中的卡片便笺。
这是html代码:
class ViewController: UIViewController {
override func viewDidLoad() {
super.viewDidLoad()
var questionsJson = [Questions]()
func parseJSON(){
if let url = Bundle.main.url(forResource: "test", withExtension: "json") {
do {
let data = try Data(contentsOf: url)
let decoder = JSONDecoder()
let jsonData = try decoder.decode(questionsResult.self, from: data)
questionsJson.append(contentsOf: jsonData.questions)
print(url)
} catch {
print("Json error \(error)")
}
}
}
}
}