TileContainer无法设置属性' className'未定义的SAPUI5版本1.48

时间:2017-10-09 15:50:26

标签: sapui5

我的应用程序运行正常。现在我已将SAPUI5库更改为CDN版本1.48.9。

我收到以下错误:

  

未捕获的TypeError:无法设置属性' className'未定义的   在TileContainer-dbg.js:1207。

这是我的代码:

<core:View  xmlns:core="sap.ui.core" 
        xmlns:mvc="sap.ui.core.mvc" 
        xmlns="sap.m"
        controllerName="sbmobiledashboard.overview" 
        xmlns:html="http://www.w3.org/1999/xhtml">

<Page id="overview.page" title="{i18n>pageEventsOverview}" navButtonPress="handleNavButtonPress" enableScrolling="false">
    <content>
        <TileContainer id="container" tileDelete="handleTileDelete"
            tiles="{modelTiles>/tiles}">
            <StandardTile 
                    icon="{modelTiles>icon}" 
                    type="{modelTiles>type}" 
                    number="{modelTiles>number}"
                    numberUnit="{modelTiles>numberUnit}" 
                    title="{modelTiles>title}" 
                    info="{modelTiles>info}"
                    infoState="{modelTiles>infoState}" 
                    press="handleTilePress" />
        </TileContainer>
    </content>
</Page>

我的结果集如下所示:

{
d: {
results: [

{

__metadata: {

id: "http://<host>:8003/sap/opu/odata/<namespace>/<service>
/homeTilesSet(guid'000C29CE-10EA-1ED7-ABA0-EB1B4D8838E0')",

uri: "http://<host>:8003/sap/opu/odata/<namespace>/<service>
/homeTilesSet(guid'000C29CE-10EA-1ED7-ABA0-EB1B4D8838E0')",

type: "/<namespace>/<service>.homeTiles"

},

guid: "000C29CE-10EA-1ED7-ABA0-EB1B4D8838E0",

title: "Critical Events (24h)",

icon: "sap-icon://alert",

number: "66 ",

numberUnit: "Events",

info: "Severity critical",

infoState: "Error",

type: "Create"

},

{

__metadata: {

id: "http://<host>:8003/sap/opu/odata/<namespace>/<service>
/homeTilesSet(guid'000C29CE-10EA-1ED7-ABA0-EB1B4D8858E0')",

uri: "http://<host>:8003/sap/opu/odata/<namespace>/<service>
/homeTilesSet(guid'000C29CE-10EA-1ED7-ABA0-EB1B4D8858E0')",

type: "/<namespace>/<service>.homeTiles"

},

guid: "000C29CE-10EA-1ED7-ABA0-EB1B4D8858E0",

title: "Event collection (24h)",

icon: "sap-icon://share-2",

number: "123 ",

numberUnit: "Events",

info: "",

infoState: "None",

type: "None"

},...

调试器告诉我上面列出的SAPUI5库函数中出现问题。如果我操纵结果集只包含第一个图块,则应用程序可以正常工作。 在以前的版本1.30.10中,代码和相同的结果集工作正常。我想知道是什么让它在最新的库中引发错误。

2 个答案:

答案 0 :(得分:0)

我还遇到了1.48.9版本的一些问题。如果您的代码适用于不同版本,请尝试将SAPUI5库的版本更改为1.48.10。您可以在bootstrap部分的index.html中更改它。如果这不能解决问题,请发布完整的错误日志。

<script id="sap-ui-bootstrap"
            src="https://sapui5.hana.ondemand.com/1.48.10/resources/sap-ui-core.js"
            data-sap-ui-libs="sap.m"
            data-sap-ui-theme="sap_bluecrystal"
            data-sap-ui-compatVersion="edge"
            data-sap-ui-resourceroots='{"com.xyz": ""}'>
        </script>

答案 1 :(得分:0)

正如今天发现的那样,sap.m.TileContainer已被弃用。请参阅文档:https://sapui5.netweaver.ondemand.com/#/api/sap.m.TileContainer