这是我的控制器,我想将currencyCheck移动到模型或单独的utility.js文件,我可以在控制器中加载,但问题是全局变量。我不知道如何使用全局变量将函数移动到单独的js文件。有没有办法在UI5中声明全局变量?
sap.ui.define([
'jquery.sap.global',
'sap/ui/core/mvc/Controller',
'sap/ui/model/json/JSONModel',
'sap/ui/model/Filter',
'sap/ui/model/FilterOperator',
'sap/m/MessageToast'
],
function(jQuery, Controller, JSONModel, Filter, FilterOperator, MessageToast) {
"use strict";
var price;
var mainController = Controller.extend("pricingTool.controller.Main", {
//define global variables
globalEnv: function() {
nsnButton = this.byId("nsnButton");
price = this.byId("price");
},
onInit: function(oEvent) {
//moving this code to Component.js
//define named/default model(s)
var inputModel = new JSONModel("model/inputs.json");
var productsModel = new JSONModel("model/products.json");
//set model(s) to current xml view
this.getView().setModel(inputModel, "inputModel");
this.getView().setModel(productsModel);
//default application settings
//unload global variables
this.globalEnv();
},
currencyCheck: function(oEvent) {
var inputVal = oEvent.getParameters().value;
var detailId = oEvent.getParameters().id;
var id = detailId.replace(/\__xmlview0--\b/, "");
var currencyCode;
var inputArr = inputVal.split("");
currencyCode = inputArr[0] + inputArr[1] + inputArr[2];
if (id === "price") {
if (inputArr[0].match(/^[\d$]+$/) || currencyCode === 'USD') {
price.setValueState("None");
} else price.setValueState("Error");
} else if (id === "unitPrice") {
console.log(inputVal);
if (inputArr[0].match(/^[\d$]+$/) || currencyCode === 'USD') {
unitPrice.setValueState("None");
} else unitPrice.setValueState("Error");
}
},
onNsnChange: function() {
//enable "Search" button if input has an entry
searchQuery = nsnSearchInput.getValue();
if (searchQuery === "") {
nsnButton.setEnabled(false);
} else {
nsnSearchInput.setValueState("None");
nsnButton.setEnabled(true);
}
},
});
return mainController;
});
答案 0 :(得分:3)
如何不使用全局变量?您可以将变量设置为局部变量,并将它们作为参数传递给任何其他方法,即使在其他类中也是如此。
在utility.js
中定义您转移的方法,如下所示:
currencyCheck: function (oEvent, price) {
...
// the code from the original function
...
}
然后您可以在MainController中执行以下操作:
currencyCheck: function (oEvent) {
var oPrice = this.byId("price");
Utility.currencyCheck(oEvent, oPrice);
}
当然,您必须在控制器文件的开头导入实用程序类。