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