0

嗨,我想在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")

                )
              },
            },
4

1 回答 1

1

你的花括号和括号有几个问题。这段代码应该可以工作,没有语法错误,并且每个表达式都在一个新行上更容易阅读。

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");
            })
        }
    })
});

于 2021-12-17T08:34:04.150 回答