sapui5amd

"Modules that use an anonymous define() call must be loaded with a require() call"


In the walkthrough step 7: JSON Model example, the app apparently works as documented but I see the following error in the console:

Error: Modules that use an anonymous define() call must be loaded with a require() call; they must not be executed via script tag or nested into other modules.

The only other instance of this message that I could find seems, to my untrained eye, to deal with a wholly different scenario.

I've tried both Firefox and Chromium, CDN hosting vs local hosting, two different UI5 versions (1.77.0 and 1.79.0), both minified and plain, so I'd suppose this is really something in the code itself.

What could it be? Also, is it something I can safely ignore and why?


Solution

  • Anonymous define

    Calling sap.ui.define([aDep],fn) defines a module anonymously because the 1st argument is not a module ID (string) but a list of dependent module IDs (array). If the module ID is omitted like in this case, the framework automatically determines it based on how the module script was referenced.

    * Module ID prefixes are typically registered with data-sap-ui-resourceRoots, sap.ui.loader.config, or formerly with jQuery.sap.registerModulePath.

    Named module define

    The 1st argument in sap.ui.define("my/demo/Module",[aDep],fn) defines the name of the module manually which must be passed when:


    The walkthrough is fixed with SAP/openui5@6302b8f and SAP/openui5-docs#43 accordingly.