LoginSignup
2
0

kintone.Promise が (非推奨)になってた

Last updated at Posted at 2023-08-07

kintone.Promise がいつの間にか(非推奨)になっていたので、メモ

概要

kintone.Promise を使用する(非推奨)

cybozu.com で動作保証しているすべての Web ブラウザーで、 ブラウザーの Promise (External link) を利用可能です。
kintone.Promise は使わず、ブラウザーの Promise を使うことを推奨します。

IE が廃止になり、IE をサポートしていたkintone.Promise の役割は終わったということですね。
これまで多くのカスタマイズ・プラグインが kintone.Promise で開発されてきたので、廃止は当分ないと思いますが、今後 Promise を使う場合は、ブラウザーの Promise を使ってくださいということ。

cybozu developer network のサンプルコード等は、まだ kintone.Promise のままですが、そのうち変更されるかも。

対応

単純に、kintone.Promise を Promise に変更するだけです。

kintonePromise.js
let p1 = new kintone.Promise(function (resolve, reject) {

Promise.js
let p1 = new Promise(function (resolve, reject) {

2
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
2
0