在SAPUI5中使用第三方库的最佳实践是什么?

时间:2017-08-15 18:44:42

标签: sapui5

第三方javascript库将在SAPUI5应用程序中使用。应用程序应该在fiori启动板中运行。 index.html中没有使用<script src="library.js"></script>。在应该在fiori启动板中运行的sapui5应用程序中调用第三方javascript库的最佳做法是什么?例如在控制器中使用moment.js

1 个答案:

答案 0 :(得分:0)

您可以使用sap.ui.define语法在控制器中加载异步模块。

sap.ui.define([
"com/sap/app/controller/BaseController",
"sap/ui/model/Filter",
"com/sap/app/lib/moment"
   ], function (BaseController, Filter, moment) {

    BaseController.extend("com.sap.app.controller.Detail", {
      onAfterRendering: function () {
        //var locale = moment.locale()
      }
   });

});