SAP Fiori My Leave请求如何停止缓存

时间:2016-09-25 08:33:23

标签: sap sap-fiori

我一直在更改默认的Leave Request应用程序,我的问题是当我在web-ide中更改一行并运行它时,浏览器正在运行上一个文件。所以我认为它正在缓存controller.js文件而且我是对的,当我清除浏览器缓存并刷新webide时,现在应用了新行。因此,我想知道如何禁用这种行为,因为为了开发应用程序,每次刷新浏览器缓存并刷新web-ide都是如此令人沮丧。
经过一些搜索后,我发现我可以添加一个index.html文件并从中调用该组件并指定启用cache-buster。但是,当我使用index.html时它没有加载应用程序可能我引用了错误。 index.html文件如下:

<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<title>openSAP - Developing Web Apps with SAPUI5</title>
<script
            id="sap-ui-bootstrap"
            src="https://sapui5.hana.ondemand.com/resources/sap-ui-core.js"
            data-sap-ui-theme="sap_bluecrystal"
            data-sap-ui-libs="sap.m"
            data-sap-ui-compatVersion="edge" 
            data-sap-ui-preload="async" 
            data-sap-ui-resourceroots='{
            "com.mci": "./"
            }'>
</script>
<script>
/*  sap.ui.getCore().attachInit(function () {
        sap.ui.xmlview({
            viewName: "hcm.myleaverequest"
        }).placeAt("content");
    });*/
    sap.ui.getCore().attachInit(function () {
        new sap.ui.core.ComponentContainer({
        name : "hcm.myleaverequest"
    }).placeAt("content");
});
</script>
</head>
<body class="sapUiBody" id="content">
</body>
</html>

1 个答案:

答案 0 :(得分:0)

To avoid caching, you can either use “Private” (or “Incognito”) mode in the browser or e.g. in Chrome, you can disable the cache in the debugging window:

Customize and Control Dev Tools -> More tools -> Network conditions -> Disable cache