Home
last modified time | relevance | path

Searched refs:searchParams (Results 1 – 25 of 26) sorted by relevance

12

/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v4.0-beta2/
H A Djs-apidiff-compiler-and-runtime.md4 …ng, searchParams: this) => void, thisArg?: Object): void;|类名:URLSearchParams;<br>方法or属性:forEach(ca…
5 …tring, searchParams: this) => void, thisArg?: Object): void;|类名:URLParams;<br>方法or属性:forEach(callb…
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v4.0-beta2/
H A Djs-apidiff-compiler-and-runtime.md4searchParams: this) => void, thisArg?: Object): void;|Class name: URLSearchParams;<br>Method or at…
5searchParams: this) => void, thisArg?: Object): void;|Class name: URLParams;<br>Method or attribut…
/ohos5.0/commonlibrary/ets_utils/js_api_module/url/
H A Djs_url.cpp1778 if (searchParams.size() == 0) { in Get()
1812 if (searchParams.size() == 0) { in GetAll()
1874 for (auto iter = searchParams.begin(); iter != searchParams.end();) { in Delete()
1895 … napi_create_string_utf8(env, searchParams[i].c_str(), searchParams[i].length(), &firNapiStr); in Entries()
1959 … for (auto it = searchParams.begin(); it < (searchParams.end() - 1) && !searchParams.empty();) { in Set()
1987 bool tmp = (searchParams[i] > searchParams[j]); in Sort()
1991 searchParams[i] = searchParams[j]; in Sort()
1992 searchParams[i + 1] = searchParams[j + 1]; in Sort()
2008 for (auto it = searchParams.begin(); it != searchParams.end(); it += stepSize) { in IterByKeys()
2043 searchParams = vec; in SetArray()
[all …]
H A Djs_url.h396 std::vector<std::string> searchParams {};
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkts/
H A Djs-apis-url.md197 forEach(callbackFn: (value: string, key: string, searchParams: URLParams) => void, thisArg?: Object…
218 | searchParams | [URLParams](#urlparams9) | 是 | 当前调用forEach方法的实例对象。 |
232 myURLObject.params.forEach((value, name, searchParams) => {
233 console.log(name, value, myURLObject.params === searchParams);
421 let searchParams = new url.URLParams("key1=value1&key2=value2"); // Create a URLSearchParamsObject …
422 let values = Array.from(searchParams.values());
813 forEach(callbackFn: (value: string, key: string, searchParams: URLSearchParams) => void, thisArg?: …
836 | searchParams | [URLSearchParams](#urlsearchparamsdeprecated) | 是 | 当前调用forEach方法的实例对象。 |
842 myURLObject.searchParams.forEach((value, name, searchParams) => {
843 console.log(name, value, myURLObject.searchParams === searchParams);
[all …]
/ohos5.0/docs/zh-cn/release-notes/changelogs/v3.2-beta5/
H A Dchangelogs-url.md41 废弃searchParams: URLSearchParams属性,新增params: URLParams属性
53 | @ohos.url | URL | searchParams: URLSearchParams; |废弃版本:9<br> |
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_3.2.10.1/
H A Dchangelogs-url.md43 废弃searchParams: URLSearchParams属性,新增params: URLParams属性
55 | @ohos.url | URL | searchParams: URLSearchParams; |废弃版本:9<br> |
/ohos5.0/docs/en/release-notes/changelogs/v3.2-beta5/
H A Dchangelogs-url.md41 Specifically, the **searchParams: URLSearchParams** attribute is deprecated, and the **params: URLP…
53 | @ohos.url | URL | searchParams: URLSearchParams; |Deprecated (in API version 9)<b…
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_3.2.10.1/
H A Dchangelogs-url.md45 Specifically, the **searchParams: URLSearchParams** attribute is deprecated, and the **params: URLP…
57 | @ohos.url | URL | searchParams: URLSearchParams; |Deprecated (in API version 9)<b…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta5/
H A Djs-apidiff-compiler-and-runtime.md17 …弃版本有变化|类名:URL<br>方法 or 属性:readonly searchParams: URLSearchParams;<br>废弃版本:N/A|类名:URL<br>方法 or 属性:r…
/ohos5.0/docs/en/application-dev/reference/apis-arkts/
H A Djs-apis-url.md197 forEach(callbackFn: (value: string, key: string, searchParams: URLParams) => void, thisArg?: Object…
218 | searchParams | [URLParams](#urlparams9) | Yes| Instance that invokes the **forEach** method.|
232 myURLObject.params.forEach((value, name, searchParams) => {
233 console.log(name, value, myURLObject.params === searchParams);
421 let searchParams = new url.URLParams("key1=value1&key2=value2"); // Create a URLSearchParamsObject …
422 let values = Array.from(searchParams.values());
815 forEach(callbackFn: (value: string, key: string, searchParams: URLSearchParams) => void, thisArg?: …
838 | searchParams | [URLSearchParams](#urlsearchparamsdeprecated) | Yes| Instance that invokes the **f…
844 myURLObject.searchParams.forEach((value, name, searchParams) => {
845 console.log(name, value, myURLObject.searchParams === searchParams);
[all …]
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta5/
H A Djs-apidiff-compiler-and-runtime.md17 …ame: readonly searchParams: URLSearchParams;<br>Deprecated version: N/A|Class name: URL<br>Method …
/ohos5.0/docs/zh-cn/release-notes/api-diff/monthly-202211/
H A Djs-apidiff-compiler-and-runtime.md3 |新增|NA|方法名 or 属性名:forEach<br>函数:forEach(callbackFn: (value: string, key: string, searchParams: this…
/ohos5.0/commonlibrary/ets_utils/
H A DREADME.md32 │ ├── searchParams # searchParams属性
186 | has(name: string): boolean | 检索searchParams对象中是否含有name。有则返回true,否则返回false。 |
189 | toString(): string | 根据searchParams对象,返回适用在URL中的查询字符串。 |
192 | append(name: string, value: string): void | 在searchParams对象中插入name, value键值对。 |
193 | delete(name: string): void | 遍历searchParams对象,查找所有的name,删除对应的键值对。 |
194 | get(name: string): string | 检索searchParams对象中第一个name,返回name键对应的值。 |
195 | getAll(name: string): string[] | 检索searchParams对象中所有name,返回name键对应的所有值。 |
196 | entries(): iterableIterator<[string, string]> | 返回一个iterator,允许遍历searchParams对象中包含的所有键/值对。 |
417 for(var pair of searchParams.entries()) {
423 url.searchParams.forEach((value, name, searchParams) => {
[all …]
H A DREADME.en.md32 │ ├── searchParams # searchParams at…
251 for(var pair of searchParams.entries()) {
257 url.searchParams.forEach((value, name, searchParams) => {
258 console.log(name, value, url.searchParams === searchParams);
/ohos5.0/docs/en/release-notes/api-diff/monthly-202211/
H A Djs-apidiff-compiler-and-runtime.md3 …ch<br>Function name: forEach(callbackFn: (value: string, key: string, searchParams: this) => void,…
/ohos5.0/commonlibrary/ets_utils/js_api_module/url/test/
H A Dtest_napi.cpp124 napi_value ToString(napi_env env, std::vector<std::string> &searchParams) in ToString() argument
142 const size_t lenStr = searchParams.size(); in ToString()
148 std::string firstStrKey = ReviseStr(searchParams[0], reviseChar); in ToString()
149 std::string firstStrValue = ReviseStr(searchParams[1], reviseChar); in ToString()
154 std::string strKey = ReviseStr(searchParams[pos], reviseChar); in ToString()
155 std::string strValue = ReviseStr(searchParams[pos + 1], reviseChar); in ToString()
/ohos5.0/commonlibrary/ets_utils/js_api_module/url/src/
H A Djs_url.ts835 get searchParams(): URLSearchParams {
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-Release/
H A Djs-apidiff-compiler-and-runtime.md7 |新增|NA|类名:URLParams;<br>方法or属性:forEach(callbackFn: (value: string, key: string, searchParams: this)…
225searchParams: this) => void, thisArg?: Object): void;<br>旧版本信息:|类名:URLSearchParams;<br>方法or属性:forE…
235 |废弃版本有变化|类名:URL;<br>方法or属性:readonly searchParams: URLSearchParams;<br>旧版本信息:|类名:URL;<br>方法or属性:read…
574 …ng, searchParams: this) => void, thisArg?: Object): void;|类名:URLSearchParams;<br>方法or属性:forEach(ca…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-Release to v3.2-Release/
H A Djs-apidiff-compiler-and-runtime.md50 …ng, searchParams: this) => void, thisArg?: Object): void;|类名:URLSearchParams;<br>方法or属性:forEach(ca…
51 …tring, searchParams: this) => void, thisArg?: Object): void;|类名:URLParams;<br>方法or属性:forEach(callb…
217searchParams: URLParams) => void, thisArg?: Object): void;<br>旧版本信息:|类名:URLParams;<br>方法or属性:forEa…
/ohos5.0/docs/en/release-notes/api-diff/v3.2-Release/
H A Djs-apidiff-compiler-and-runtime.md7 …d or attribute name: forEach(callbackFn: (value: string, key: string, searchParams: this) => void,…
225searchParams: this) => void, thisArg?: Object): void;<br>Old version: |Class name: URLSearchParams…
235 …ute name: readonly searchParams: URLSearchParams;<br>Old version: |Class name: URL;<br>Method or a…
574searchParams: this) => void, thisArg?: Object): void;|Class name: URLSearchParams;<br>Method or at…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.2-beta4/
H A Djs-apidiff-compiler-and-runtime.md11 |新增|NA|方法名 or 属性名:forEach<br>函数:forEach(callbackFn: (value: string, key: string, searchParams: this…
/ohos5.0/docs/zh-cn/release-notes/api-diff/v3.0-LTS/
H A Djs-apidiff-v3.0-lts.md63 |语言编译器运行时-URL|readonly searchParams: URLSearchParams;|新增|-|
/ohos5.0/docs/en/release-notes/api-diff/v4.0-Release-vs-v3.2-Release/
H A Djs-apidiff-compiler-and-runtime.md50searchParams: this) => void, thisArg?: Object): void;|Class name: URLSearchParams;<br>Method or at…
51searchParams: this) => void, thisArg?: Object): void;|Class name: URLParams;<br>Method or attribut…
217searchParams: URLParams) => void, thisArg?: Object): void;<br>Old version information: |Class name…
/ohos5.0/docs/en/release-notes/api-diff/v3.2-beta4/
H A Djs-apidiff-compiler-and-runtime.md11 …ch<br>Function name: forEach(callbackFn: (value: string, key: string, searchParams: this) => void,…

12