string
必須
ターゲティングキー
string
必須
ターゲティング値
setKvs
setKvs メソッドは、複数のキーと値のペアを一度に設定するための便利なメソッドです。
キーがターゲティングキー、値がターゲティング値であるオブジェクトを受け取ります。
object
必須
キーと値のペアのオブジェクト
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
オプションのターゲティング用にキーと値のペアを設定
reviq.setKv("key", "value");
reviq.setKv("dog", "woof");
reviq.setKv("cat", "meow");
reviq.setKvs({
"key": "value",
"dog": "woof",
"cat": "meow"
});
googletag.pubads().getTargeting("key"); //= ["value"]
googletag.pubads().getTargeting("foo"); //= ["bar"]
googletag.pubads().getTargeting("cat"); //= ["meow"]
setKvs メソッドは、複数のキーと値のペアを一度に設定するための便利なメソッドです。
キーがターゲティングキー、値がターゲティング値であるオブジェクトを受け取ります。