Browse Source

Merge pull request #20086 from abpframework/salihozkara-patch-2

Fix Cli.md path
pull/20104/head
Engincan VESKE 2 years ago
committed by GitHub
parent
commit
2e49842e23
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 6
      docs/en/UI/AspNetCore/Static-JavaScript-Proxies.md

6
docs/en/UI/AspNetCore/Static-JavaScript-Proxies.md

@ -49,7 +49,7 @@ Open a command-line terminal in the root folder of your web project (`.csproj`)
abp generate-proxy -t js -u https://localhost:53929/
````
> If you haven't installed yet, you should install the [ABP CLI](../CLI.md). Change the example URL to your application's root URL.
> If you haven't installed yet, you should install the [ABP CLI](../../CLI.md). Change the example URL to your application's root URL.
This command should generate the following files under the `ClientProxies` folder:
@ -66,7 +66,7 @@ acme.bookStore.authors.author.get = function(id, ajaxParams) {
};
````
> `generate-proxy` command generates proxies for only the APIs you've defined in your application (assumes `app` as the module name). If you are developing a modular application, you can specify the `-m` (or `--module`) parameter to specify the module you want to generate proxies. See the *generate-proxy* section in the [ABP CLI](../CLI.md) documentation for other options.
> `generate-proxy` command generates proxies for only the APIs you've defined in your application (assumes `app` as the module name). If you are developing a modular application, you can specify the `-m` (or `--module`) parameter to specify the module you want to generate proxies. See the *generate-proxy* section in the [ABP CLI](../../CLI.md) documentation for other options.
### Using the Proxy Functions
@ -154,4 +154,4 @@ See the [jQuery.ajax](https://api.jquery.com/jQuery.ajax/) documentation for all
* [Dynamic JavaScript API Client Proxies](Dynamic-JavaScript-Proxies.md)
* [Auto API Controllers](../../API/Auto-API-Controllers.md)
* [Web Application Development Tutorial](../../Tutorials/Part-1.md)
* [Web Application Development Tutorial](../../Tutorials/Part-1.md)

Loading…
Cancel
Save