我正在使用Bootstrap数据表(https://datatables.net/examples/styling/bootstrap4) 用于在aspx页面中显示数据表。
我从数据库获取数据。
我希望每隔一秒从javascript / ajax和刷新表。 什么是最好的方式?
我正在尝试这个。在fillFileTable上设置断点但断点不起作用;没有进入断点。
let cancel: UIButton = {
let button = UIButton()
button.buttonTitleLabelWith(titleEdgeInsets: .zero, title: String(string: "Cancel") as NSString, lineBreakMode: .byWordWrapping, font: UIFont.systemFont(ofSize: 25/1024 * UIScreen.main.bounds.height), textColor: UIColor.blue.withAlphaComponent(0.80))
button.isUserInteractionEnabled = true
button.backgroundColor = .blue
button.addTarget(self, action: #selector(tapPopUpButtons), for: .touchUpInside)
return button
}()