質問編集履歴
1
ご依頼いただいたの情報を追記いたします。
test
CHANGED
File without changes
|
test
CHANGED
@@ -100,6 +100,32 @@
|
|
100
100
|
|
101
101
|
```
|
102
102
|
|
103
|
+
searchToQueryの情報です。
|
104
|
+
|
105
|
+
```js
|
106
|
+
|
107
|
+
//クエリに変換
|
108
|
+
|
109
|
+
export function searchToQuery(card:Search): {
|
110
|
+
|
111
|
+
[key: string]: string | string[];
|
112
|
+
|
113
|
+
} {
|
114
|
+
|
115
|
+
const params: { [key: string]: string[] | string } = {
|
116
|
+
|
117
|
+
other: card.other.map((item) => item.value.toString()),
|
118
|
+
|
119
|
+
//...
|
120
|
+
|
121
|
+
};
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
```
|
128
|
+
|
103
129
|
undefinedが帰ってくるコードの引数`queryName`を`other`のように使用する方法をご教示ください。
|
104
130
|
|
105
131
|
よろしくお願いします。
|