SAP UI5智能表Json数据使用情况

时间:2016-03-23 13:05:01

标签: json sap sapui5 smart-table

我在智能表对象中使用json数据时遇到了问题。我从Web服务获取json数据,并将json数据设置为任何其他变量。如何将该变量绑定到EntitySet?实际上我的应用程序文件夹中没有任何json文件。

这是我用于项目的应用程序示例链接; https://sapui5.netweaver.ondemand.com/explored.html#/sample/sap.m.tutorial.walkthrough.27/code

这是我的metadata.xml代码;

<edmx:Edmx Version="1.0" xmlns:edmx="http://schemas.microsoft.com/ado/2007/06/edmx">
<edmx:DataServices m:DataServiceVersion="1.0" m:MaxDataServiceVersion="3.0"
                   xmlns:m="http://schemas.microsoft.com/ado/2007/08/dataservices/metadata">
    <Schema Namespace="UserModel" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
        <EntityType Name="Users">
            <Key>
                <PropertyRef Name="TKID"/>
                <PropertyRef Name="TKTX"/>
            </Key>
            <Property Name="TKTX" Type="Edm.String" Nullable="false" MaxLength="40" FixedLength="false" Unicode="true"/>
            <Property Name="TKID" Type="Edm.Int16" Nullable="false"/>           
        </EntityType>
    </Schema>
    <Schema Namespace="ODataWebV2.Northwind.Model" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
        <EntityContainer Name="UserModelEntities" m:IsDefaultEntityContainer="true" p6:LazyLoadingEnabled="true"
                         xmlns:p6="http://schemas.microsoft.com/ado/2009/02/edm/annotation">
            <EntitySet Name="Users" EntityType="UserModel.Users"/>
    <!--How can I bind my json data incoming from webservice ?-->
        </EntityContainer>
    </Schema>
</edmx:DataServices>

Here is the my json data result;

感谢您的帮助。

0 个答案:

没有答案