Webstorm调试不起作用

时间:2014-12-29 09:46:44

标签: webstorm sapui5

我尝试使用Chrome扩展程序jetbrains IDE支持将Webstorm配置为在调试模式下工作。 我想从这个应用程序开始https://openui5.hana.ondemand.com/test-resources/sap/m/demokit/poa/index.html

我下载了sdk https://openui5.hana.ondemand.com/test-resources/sap/m/demokit/poa/index.html,然后我带了\test-resources\sap\m\demokit\poa文件夹,然后通过"现有文件中的新项目..."在webstorm中导入它。然后我选择此方案enter image description here

我在Chrome中安装了jetbrains IDE Support插件。现在,如果我运行index.html所有正常工作! 但是,如果我调试文件,我有这个结果...: enter image description here

这是我的索引:

<!DOCTYPE html>
<html>
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta charset="UTF-8">

    <title>UI5 Boilerplate</title>

    <!-- UI5 Bootstrap with OpenUI5 -->
    <script id="sap-ui-bootstrap"
            type="text/javascript"
            src="resources/openui/sap-ui-core-dbg.js"
            data-sap-ui-theme="sap_bluecrystal"
            data-sap-ui-xx-bindingSyntax="complex"
            data-sap-ui-libs="sap.m"
            data-sap-ui-resourceroots='{
            "ui5bp": "./",
            "model": "./model"
             }'
        >
    </script>


    <!-- Custom Styles -->
    <link rel="stylesheet" type="text/css" href="css/style.css" />

   <script>

        new sap.m.Shell("Shell", {
            showLogout : false,
            app : new sap.ui.core.ComponentContainer({
                name : 'ui5bp'
            }),
            homeIcon : {
                'phone' : 'img/57_iPhone_Desktop_Launch.png',
                'phone@2' : 'img/114_iPhone-Retina_Web_Clip.png',
                'tablet' : 'img/72_iPad_Desktop_Launch.png',
                'tablet@2' : 'img/144_iPad_Retina_Web_Clip.png',
                'favicon' : 'img/favicon.ico',
                'precomposed': false
            }
        }).placeAt('root');
   </script>
</head>

<body class="sapUiBody" id="root">
</body>

</html>

这是Webstorm中控制台的输出,当页面显示我&#34;等待来自localhost ...&#34;:

2014-12-30 14:50:16 Device API logging initialized - DEVICE
2014-12-30 14:50:16 SAP Logger started. -  
2014-12-30 14:50:16 registerResourcePath ('', 'resources/openui/') -  sap.ui.ModuleSystem
2014-12-30 14:50:16 registerResourcePath ('ui5bp', './') -  sap.ui.ModuleSystem
2014-12-30 14:50:16 registerResourcePath ('model', './model/') -  sap.ui.ModuleSystem
2014-12-30 14:50:16 URL prefixes set to: -  sap.ui.ModuleSystem
2014-12-30 14:50:16   (default) : resources/openui/ -  sap.ui.ModuleSystem
2014-12-30 14:50:16   'ui5bp' : ./ -  sap.ui.ModuleSystem
2014-12-30 14:50:16   'model' : ./model/ -  sap.ui.ModuleSystem

我哪里错了?

1 个答案:

答案 0 :(得分:1)

现在工作正常!我设置了这个选项: enter image description here