嗨,我想在Ui5中进行API 调用,但每次它告诉我,它不知道什么是“Const”。
Uncaught SyntaxError: Unexpected token 'const' 显示名为 'TargetResult' 的路由目标时发生以下错误:SyntaxError: Unexpected token 'const' -
Uncaught (in promise) SyntaxError: Unexpected token 'const'
我的 UI5 调用:
sap.ui.define([
"sap/ui/core/mvc/Controller", "sap/ui/model/json/JSONModel"
], function(Controller, JSONModel) {
"use strict";
return Controller.extend("TESTE.TESTE.controller.ResultDevice", {
onInit: function() {
var sUrl = "/api/tablets?limit=1000&offset=0";
const url = "https://jsonplaceholder.typicode.com/users";
fetch(url).then(res => res.json()).then(res => (
const dataModel = new JSONModel(); dataModel.setData({
items: res
}); this.getView().setModel(dataModel, "aribadevices")
)
},
},