策略 APIPython 策略CA APIsstorage本頁導覽storage存取鍵值對。InputTo set key valuekey: string;value: any;To access keykey: string;回傳value: string;範例CA.storage('string', 'to the moon 🌙')val = CA.storage('string') # to the moon 🌙CA.storage('int', 131441)val = CA.storage('int') # 131441CA.storage('none', None)val = CA.storage('none') # None