-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(core): added support for all types of http requests
All examples: *http="let response get url" *http="let response get url with options" *http="let response delete url" *http="let response delete url with options" *http="let response head url" *http="let response head url with options" *http="let response jsonp url callbackParam callback" *http="let response options url" *http="let response options url with options" *http="let response patch url body body" *http="let response patch url body body with options" *http="let response post url body body" *http="let response post url body body with options" *http="let response put url body body" *http="let response put url body body with options"
- Loading branch information
Showing
48 changed files
with
756 additions
and
312 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<a name="6.0.0"></a> | ||
# 6.0.0 (2018-10-06) | ||
<a name="6.0.1"></a> | ||
## 6.0.1 (2018-10-06) | ||
|
||
|
||
### Features | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"index": "/index.html", | ||
"assetGroups": [ | ||
{ | ||
"name": "app", | ||
"installMode": "prefetch", | ||
"resources": { | ||
"files": [ | ||
"/favicon.ico", | ||
"/index.html", | ||
"/*.css", | ||
"/*.js" | ||
] | ||
} | ||
}, { | ||
"name": "assets", | ||
"installMode": "lazy", | ||
"updateMode": "prefetch", | ||
"resources": { | ||
"files": [ | ||
"/assets/**" | ||
] | ||
} | ||
} | ||
], | ||
"dataGroups": [ | ||
{ | ||
"name": "github-api", | ||
"urls": [ | ||
"https://api.github.com/**" | ||
], | ||
"version": 3, | ||
"cacheConfig": { | ||
"maxSize": 1000, | ||
"maxAge": "5m" | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.