Quartz.NET - 编辑/删除作业页面
我正在使用 Quartz.NET 来创建我正在创建的 C# Windows 服务。我希望管理员能够访问在网格视图中显示所有作业和关联触发器的网页,以便他们可以更新或删除作业。
我遇到的问题是,我想要显示/可编辑的大量数据存储在 JOB_DATA 字段中,该字段是二进制图像字段,因此无法使用 gridview 轻松访问。如何获取每行的 JobDetail
信息以及网格的数据映射?
I'm using Quartz.NET for a C# Windows Service I am creating. I want the administrators to be able to access a webpage that displays all jobs and associated triggers in a gridview so they can update or delete the jobs.
The issue I have is a lot of data I want to be displayed/editable is stored in the JOB_DATA
field, which is a binary image field, so cannot be accessed easily using the gridview. How do I go about getting the JobDetail
information for each row, and getting the data map for the grid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建任何类并将其放入 JobDataMap 中,然后在使用特定作业时再次提取它:
然后在稍后阶段您可以获取作业详细信息并检索信息,如下所示:
You can just create any Class and Put it in the JobDataMap and Just extract it again when using a specific job:
Then at a later stage u can get the Job Detail and retreive the information as below: