我们可以从 Apache Cordova 调用 C# Library dll 吗?

Can We Call C# Library dll from Apache Cordova?

我的天蓝色 table 存储 table 命名为用户,我在其中存储了用户信息。

我有核心 class 库,其中包含从 Azure 中获取数据的业务逻辑。

我的网络应用程序使用这个库。

现在我想使用 Cordova 创建移动应用程序。

我可以在 cordova 中使用 ajax 引用 class 库 dll 和调用函数吗? 如果不是,完成这项任务的方法是什么?

相关问题是我应该如何从 Cordova 应用程序中的 azure table 存储中获取记录?

Apache Cordova is a platform for building native mobile applications using HTML, CSS and JavaScript

所以不,您不能直接在客户端上调用 .NET 程序集。你必须把它们放在 a plugin. You can find some samples for Windows Phone here. Another sample in this SO question.