如何在AZURE EASY API中编写选择函数

时间:2016-11-04 09:07:49

标签: azure azure-sql-database azure-mobile-services

下面是我用来从表中获取数据的代码。这段代码在azure classic(OLD)门户中正常工作。但在新门户网站中,它似乎并不起作用。我尝试了所有可能的语法,但没有任何效果。 帮助赞赏!!

someTable.select('id','Name')}).read({
        success: function(results) {
         //rest of the code
        }
    });

1 个答案:

答案 0 :(得分:4)

在花了这么多天后,我找到了答案。

在azure新门户网站中,他们改变了编写Easy table脚本和Api脚本(Custom API)的语法。我希望我的回答能帮到你。

request.azureMobile.tables('someTable').select('id','name').where({ 
// your conditions

}).read().then(function (results) {
           //rest of the code
          }
 });

如果您在Azure新门户中发现任何问题,请检查下面给出的链接。

https://shellmonger.com/30-days-of-azure-mobile-apps-the-table-of-contents/

https://adrianhall.github.io/develop-mobile-apps-with-csharp-and-azure/