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?
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.
sap.ui.define
only once at the top-level of the JS file content, not multiple times.sap.ui.define
with sap.ui.require
when simply requiring existing modules. See my comment at Issue #2203 · SAP/openui5 (github.com).define
scenario, would otherwise cause processing the module definition multiple times due the framework determining the module ID from the different ID prefix.* Module ID prefixes are typically registered with data-sap-ui-resourceRoots
, sap.ui.loader.config
, or formerly with jQuery.sap.registerModulePath
.
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:
sap.ui.define
API description:
A single file must not contain multiple calls to
sap.ui.define
. [...]
<script>
tag from HTML.The walkthrough is fixed with SAP/openui5@6302b8f
and SAP/openui5-docs#43
accordingly.