Recently I meet with an annoying Javascript error “undefined is not a function” during my Fiori development. After debugging the framework code for several hours

如何分析SAP UI5应用的undefined is not a function错误

, I finally find a more efficient way to find the exact source code which causes the trouble. I would like to share this small tip with you and hope it could help.

Issue: When I am doing test on my application on a local tomcat, I could only see an empty screen.

For sure there must be some Javascript error occurred.

如何分析SAP UI5应用的undefined is not a function错误

Open Chrome console and I see one Uncaught TypeError: undefined is not a function as expected.

如何分析SAP UI5应用的undefined is not a function错误

Unfortunately this error is raised in UI5 framework js “UIComponent.js”, after I click the hyperlink in the screenshot above, I am automatically navigated to this file, however I do completely not understand what has happened here, in function ( q, C, U, V ).

如何分析SAP UI5应用的undefined is not a function错误

Then I press Ctrl+Alt+Shift+P to switch on debug by marking checkbox “Use Debug Sources”.

如何分析SAP UI5应用的undefined is not a function错误

Refresh UI and now the debug resource, UIComponent-dbg.js is loaded instead. Since what I bad need is the context of this error, or callstack, so I set a breakpoint on catch statement, line 47. Relaunch application UI and breakpoint is triggered.
I add variable e in Watch Expression:

如何分析SAP UI5应用的undefined is not a function错误

Expand variable e in Watch Expressions and put the mouse to stack. The complete callstack is instantly displayed.
The topmost callstack shows the error occurs in line 154, column 36 of file ConnectionManager-dbg.js:

如何分析SAP UI5应用的undefined is not a function错误

Then I find the root cause here:

如何分析SAP UI5应用的undefined is not a function错误

the variable service.serviceUrl is not a String but an object of URI which does not have a method named “indexOf”:

如何分析SAP UI5应用的undefined is not a function错误

Conclusion

Although this error is raised in UI framework js file, it is however an absolute application issue: the url of OData is defined in Configuration.js file by application as metadata, and UI framework in the runtime will ask for it by calling some callback functions defined by application and then consume it. Framework will assume always a String for OData service url returned by application.
After the following fix is done on application, the issue is fixed.

如何分析SAP UI5应用的undefined is not a function错误

Any other alternative solution?

Later on I find another approach to find the position ( line 154, column 36 ) even without debugging.

I test my app with Firefox. To my surprise, it could directly display more detail about this error compared with Chrome: “j.serviceUrl.indexOf is not a function”.

如何分析SAP UI5应用的undefined is not a function错误

The Firefox console shows this error occurs in sap-ui-core.js line 80

如何分析SAP UI5应用的undefined is not a function错误

However I could not find any hit by searching “indexOf” within this file.

如何分析SAP UI5应用的undefined is not a function错误

So I just again switch to Chrome and search serviceUrl.indexOf in Chrome instead, this time I get directly what I am looking for.

如何分析SAP UI5应用的undefined is not a function错误

From this cause it seems that these two complementary powerful tool, Chrome and Firefox, could make our life as UI5 developer more easier.

要获取更多Jerry的原创文章,请关注公众号"汪子熙":
如何分析SAP UI5应用的undefined is not a function错误

相关文章:

  • 2022-02-07
  • 2021-12-04
  • 2022-12-23
  • 2021-05-02
  • 2022-12-23
  • 2022-12-23
  • 2021-09-05
  • 2021-06-09
猜你喜欢
  • 2022-12-23
  • 2022-01-15
  • 2021-09-28
  • 2022-12-23
  • 2022-12-23
  • 2022-01-15
  • 2022-12-23
相关资源
相似解决方案