0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Kintone クエリを使った情報の取得 フィールドタイプ>ドロップダウン

Last updated at Posted at 2022-04-02

前に利用したクエリと同じようにクエリを作ったのにエラーがでたのはこれ

var paramQuery = "&query=" + encodeURIComponent("選択=\"移動端末\"");

エラーメッセージは

Exception: https://=~=~=~=~=~=~=.cybozu.com のリクエストに失敗しました(エラー: 520)。
エラーメッセージは
 {"message":"選択フィールドのフィールドタイプには演算子=を使用できません。"}

選択のフィールドはドロップボックスだったのが原因か・・・
じゃあ、どうすれば

ドロップダウンイールドは「=」ではなく「in」を使用するらしい。

レコードの取得(GET)

var paramQuery = "&query=" + encodeURIComponent("選択 in (\"移動端末\")");

これでどうだ?!

できた!!

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?