Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我有一个在服务器端运行的作业,并且同一作业中的一行需要在客户端运行,这可以实现吗?当我尝试批量运行 Global 类中的 WeekofYear 方法时,它没有被执行(因为它调用了只能在客户端上运行的 WINApi 类方法。)
请协助。
我只能建议您创建一个新方法,例如Global::weekOfYearServer并确保所有 WinAPI 调用都在服务器上执行 - 您可以尝试在WinAPIServer类中创建适当的方法。
Global::weekOfYearServer
WinAPIServer