在SAP WebIde Personal Edition中更改SAPUI5库位置

时间:2016-12-01 07:59:38

标签: sapui5 ui5-library

我正在使用SAPWebIde personal来开发我的UI5应用程序。目前,作为临时解决方案,我们使用的是src =" https://sapui5.netweaver.ondemand.com/resources/sap-ui-core.js"用于加载UI5运行时。我们将在ABAP系统上部署应用程序,并且我不想每次使用此URL加载运行时,因此它应该在ABAP系统上。如何在ABAP系统上配置? 第二,如果我想在我的应用程序中本地配置它。所以我想保留src =" /resources/sap-ui-core.js"虽然它是,但我想有更改版本的选择。目前,我正在使用SAP WebIDE 1.137.10版本,并且没有对index.html代码进行任何更改,它给了我sap.ui.version 1.42。我想将此更改为1.38。怎么做?

此致 MS

3 个答案:

答案 0 :(得分:1)

为此,首先需要安装此稳定版本的软件包: 注:2313717

然后,您可以检查<input id='inp1'> <input id='btn1' type='button' value='Extract Numbers'> <output id='out1'></output>已安装的ERP版本。

然后您可以在索引页面中更改ui5 lib的版本:

http://<host>:<port>/sap/public/bc/ui5_ui5/

答案 1 :(得分:1)

您可以尝试在脚本标记中使用此功能

<script id="sap-ui-bootstrap" type="text/javascript" 
src="https://sapui5.hana.ondemand.com/1.42/resources/sap-ui-core.js"/>

答案 2 :(得分:0)

下载SAPUI5运行时并解压缩到Web IDE plugins\com.sap.webide.orionplugin_1.53.1\ui5

的文件夹

在项目的根目录中定义neo-app.json。

以下是我的例子。

{
"welcomeFile": "webapp/index.html",
"routes": [{
    "path": "/resources",
    "target": {
        "type": "service",
        "name": "sapui5",
        "version": "1.48.6",
        "entryPath": "/resources"
    },
    "description": "SAPUI5 Resources"
}]}

在index.html中

    <script id="sap-ui-bootstrap" type="text/javascript" 
    src="../../resources/sap-ui-core.js" 

然后,将在Web IDE个人版中加载1.48.6。