I am using the getting started "Web Application Development Tutorial " and the application is working. However I am not able to call the appservice from the javascript page or the developer console. When I type in the developer console "camilatest.Books.book.getList({}).done(function (result) { console.log(result); });", I get an error message saying that camilatest is not defined. See attached screen shots.
If you're creating a bug/problem report, please include followings:
-
ABP Framework version: v4.4
-
UI type:MVC
-
DB provider: EF Core /
-
Tiered (MVC) or Identity Server Separated (Angular): yes
-
Exception message and stack trace:
-
Steps to reproduce the issue:"
1 Answer(s)
-
0
Hi @cxp920
Dynamic Proxy convention is camelCase. Can you try
camilatest.books.book.getList({})
instead ofcamilatest.Books.book.getList({})
?