从React项目中调用.NET Framework控制器

时间:2018-11-15 14:26:38

标签: .net reactjs azure web-applications

我正在研究一个小型.NET框架项目,该项目用作服务器,可以从Azure中检索表存储并显示表的内容。

这是控制器:

namespace WebApplication3.Controllers
{
public class GetEmailAddressesController : Controller
{
   public ActionResult Address()
    {
        string emails = "";

        // Parse the connection string and return a reference to the storage account.
        CloudStorageAccount storageAccount = CloudStorageAccount.Parse("__StorageConnectionString__");

        // Create the table client.
        CloudTableClient tableClient = storageAccount.CreateCloudTableClient();

        CloudTable table = tableClient.GetTableReference("experimentsEmailAddresses");

        // Construct a table query.
        TableQuery<TableData> query = new TableQuery<TableData>();

        foreach (TableData entity in table.ExecuteQuery(query))
        {
            emails += entity.FullName + ";";

        }

        ViewBag.Message = " " + emails;
        return View();
    }

}
}

同时,我打开了一个React项目,用作客户端。

在运行客户端时,应该能够看到上面控制器的输出的过程是什么?即从网站上打印的表格中看到全名。

预先感谢

0 个答案:

没有答案