Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified docs/4DQodlyPro/pageLoaders/img/QodlysourceLocation.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 5 additions & 3 deletions docs/4DQodlyPro/pageLoaders/qodlySources.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,22 +82,24 @@ The `Qodly` namespace <img src={require('./img/Built-inSharedQodlyNamespace.png

### Qodlysource: Location

Within the **Qodly** namespace, you'll find the predefined qodlysource named **Location** <img src={require('./img/QodlysourceLocation.png').default} style={{borderRadius: '6px', width: '30%'}} />.
Within the **Qodly** namespace, you'll find the predefined qodlysource named **Location**

<img src={require('./img/QodlysourceLocation.png').default} style={{borderRadius: '6px', width: '30%'}} />.

The Location qodlysource is specifically designed to facilitate handling URL-related data, making it simple to interact with different URL segments.


#### Key Attributes of Location:

- **urlQuery** *(Array)*: Stores URL segments that identify specific resources. These segments represent parts of the URL separated by slashes (`/`).
- **urlQuery** *(Object)*: Contains key-value pairs representing parameters that appear after the question mark (`?`) in URLs.

**Example:**
```javascript
// URL: example.com/search?category=shoes&color=blue
Location.urlQuery // Output: { category: "shoes", color: "blue" }
```

- **urlPath** *(Object)*: Contains key-value pairs representing parameters that appear after the question mark (`?`) in URLs.
- **urlPath** *(Array)*: Stores URL segments that identify specific resources. These segments represent parts of the URL separated by slashes (`/`).

**Example:**
```javascript
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -82,22 +82,24 @@ The `Qodly` namespace <img src={require('./img/Built-inSharedQodlyNamespace.png

### Qodlysource: Location

Within the **Qodly** namespace, you'll find the predefined qodlysource named **Location** <img src={require('./img/QodlysourceLocation.png').default} style={{borderRadius: '6px', width: '30%'}} />.
Within the **Qodly** namespace, you'll find the predefined qodlysource named **Location**

<img src={require('./img/QodlysourceLocation.png').default} style={{borderRadius: '6px', width: '30%'}} />.

The Location qodlysource is specifically designed to facilitate handling URL-related data, making it simple to interact with different URL segments.


#### Key Attributes of Location:

- **urlQuery** *(Array)*: Stores URL segments that identify specific resources. These segments represent parts of the URL separated by slashes (`/`).
- **urlQuery** *(Object)*: Contains key-value pairs representing parameters that appear after the question mark (`?`) in URLs.

**Example:**
```javascript
// URL: example.com/search?category=shoes&color=blue
Location.urlQuery // Output: { category: "shoes", color: "blue" }
```

- **urlPath** *(Object)*: Contains key-value pairs representing parameters that appear after the question mark (`?`) in URLs.
- **urlPath** *(Array)*: Stores URL segments that identify specific resources. These segments represent parts of the URL separated by slashes (`/`).

**Example:**
```javascript
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -82,22 +82,24 @@ The `Qodly` namespace <img src={require('./img/Built-inSharedQodlyNamespace.png

### Qodlysource: Location

Within the **Qodly** namespace, you'll find the predefined qodlysource named **Location** <img src={require('./img/QodlysourceLocation.png').default} style={{borderRadius: '6px', width: '30%'}} />.
Within the **Qodly** namespace, you'll find the predefined qodlysource named **Location**

<img src={require('./img/QodlysourceLocation.png').default} style={{borderRadius: '6px', width: '30%'}} />.

The Location qodlysource is specifically designed to facilitate handling URL-related data, making it simple to interact with different URL segments.


#### Key Attributes of Location:

- **urlQuery** *(Array)*: Stores URL segments that identify specific resources. These segments represent parts of the URL separated by slashes (`/`).
- **urlQuery** *(Object)*: Contains key-value pairs representing parameters that appear after the question mark (`?`) in URLs.

**Example:**
```javascript
// URL: example.com/search?category=shoes&color=blue
Location.urlQuery // Output: { category: "shoes", color: "blue" }
```

- **urlPath** *(Object)*: Contains key-value pairs representing parameters that appear after the question mark (`?`) in URLs.
- **urlPath** *(Array)*: Stores URL segments that identify specific resources. These segments represent parts of the URL separated by slashes (`/`).

**Example:**
```javascript
Expand Down