Instance Property インスタンスプロパティ

queryItems

An array of query items for the URL in the order in which they appear in the original query string. URLに対するクエリ項目それらからなるある配列、それにおいてそれらが元のクエリ文字列に現れる順番で。

Declaration 宣言

var queryItems: [URLQueryItem]? { get set }

Discussion 議論

Each URLQueryItem represents a single key-value pair, URLQueryItemは、ある単一のキー値ペアを表します。

Note that a name may appear more than once in a single query string, so the name values are not guaranteed to be unique. If the URLComponents has an empty query component, returns an empty array. If the URLComponents has no query component, returns nil. ある名前が一回以上ある単一のクエリ文字列の中に現れるかもしないことに注意してください、それで名前値は特有であることを保証されません。URLComponentsが空のクエリ構成要素を持つならば、空の配列を返します。URLComponentsがどんなクエリ構成要素も持たないならば、nil を返します。

The setter combines an array containing any number of URLQueryItems, each of which represents a single key-value pair, into a query string and sets the URLComponents query property. Passing an empty array sets the query component of the URLComponents to an empty string. Passing nil removes the query component of the URLComponents. セッターは、そのそれぞれがある単一のキー値ペアを表すURLQueryItemを随意の数だけ含んでいるある配列を、あるクエリ文字列へと統合します、そしてURLComponentsクエリプロパティを設定します。空の配列を渡すことは、URLComponentsのクエリ構成要素を空の文字列へと設定します。nil を渡すことは、URLComponentsのクエリ構成要素を取り除きます。

See Also 参照

Accessing Components in Native Format 構成要素にネイティブ形式でアクセスする