讓SAP雲平臺上的Web應用使用destination服務

i042416發表於2018-05-12
讓SAP雲平臺上的Web應用使用destination服務

首先在SAP雲平臺裡建立一個destination,維護service的end point:

讓SAP雲平臺上的Web應用使用destination服務

然後開啟SAP雲平臺的WebIDE,建立一個新的資料夾和新的HTML5 Application Descriptor:

讓SAP雲平臺上的Web應用使用destination服務

將下列內容貼上到neo-app.json去:

 { "welcomeFile": "index.html", "routes": [
    { "path": "/resources", "target": { "type": "service", "name": "sapui5", "entryPath": "/resources" }, "description": "SAPUI5 Resources" },
    { "path": "/test-resources", "target": { "type": "service", "name": "sapui5", "entryPath": "/test-resources" }, "description": "SAPUI5 Test Resources" },
     { "path": "/distance", "target": { "type": "destination", "name": "google_map" }, "description": "Google map" }
  ]
} 

新建一個index.html, 輸入以下內容:

 <a href="distance/xml?origins=Walldorf&destinations=Paris">

Distance from Walldorf to Paris:</a> 
讓SAP雲平臺上的Web應用使用destination服務

測試該應用,點選超連結:

讓SAP雲平臺上的Web應用使用destination服務

會發現第一步建立的destination已經生效了。

讓SAP雲平臺上的Web應用使用destination服務

要獲取更多Jerry的原創技術文章,請關注公眾號"汪子熙"或者掃描下面二維碼:

讓SAP雲平臺上的Web應用使用destination服務
讓SAP雲平臺上的Web應用使用destination服務

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2154380/,如需轉載,請註明出處,否則將追究法律責任。

相關文章