-
Notifications
You must be signed in to change notification settings - Fork 11
/
wxapp_api.json
2190 lines (2190 loc) · 77.4 KB
/
wxapp_api.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"Animation.backgroundColor": {
"desc": "设置背景色",
"href": "ui/animation/Animation.backgroundColor.html"
},
"Animation.bottom": {
"desc": "设置 bottom 值",
"href": "ui/animation/Animation.bottom.html"
},
"Animation.export": {
"desc": "导出动画队列",
"href": "ui/animation/Animation.export.html"
},
"Animation.height": {
"desc": "设置高度",
"href": "ui/animation/Animation.height.html"
},
"Animation.left": {
"desc": "设置 left 值",
"href": "ui/animation/Animation.left.html"
},
"Animation.matrix": {
"desc": "同 ",
"href": "ui/animation/Animation.matrix.html"
},
"Animation.matrix3d": {
"desc": "同 ",
"href": "ui/animation/Animation.matrix3d.html"
},
"Animation.opacity": {
"desc": "设置透明度",
"href": "ui/animation/Animation.opacity.html"
},
"Animation.right": {
"desc": "设置 right 值",
"href": "ui/animation/Animation.right.html"
},
"Animation.rotate": {
"desc": "从原点顺时针旋转一个角度",
"href": "ui/animation/Animation.rotate.html"
},
"Animation.rotate3d": {
"desc": "从 X 轴顺时针旋转一个角度",
"href": "ui/animation/Animation.rotate3d.html"
},
"Animation.rotateX": {
"desc": "从 X 轴顺时针旋转一个角度",
"href": "ui/animation/Animation.rotateX.html"
},
"Animation.rotateY": {
"desc": "从 Y 轴顺时针旋转一个角度",
"href": "ui/animation/Animation.rotateY.html"
},
"Animation.rotateZ": {
"desc": "从 Z 轴顺时针旋转一个角度",
"href": "ui/animation/Animation.rotateZ.html"
},
"Animation.scale": {
"desc": "缩放",
"href": "ui/animation/Animation.scale.html"
},
"Animation.scale3d": {
"desc": "缩放",
"href": "ui/animation/Animation.scale3d.html"
},
"Animation.scaleX": {
"desc": "缩放 X 轴",
"href": "ui/animation/Animation.scaleX.html"
},
"Animation.scaleY": {
"desc": "缩放 Y 轴",
"href": "ui/animation/Animation.scaleY.html"
},
"Animation.scaleZ": {
"desc": "缩放 Z 轴",
"href": "ui/animation/Animation.scaleZ.html"
},
"Animation.skew": {
"desc": "对 X、Y 轴坐标进行倾斜",
"href": "ui/animation/Animation.skew.html"
},
"Animation.skewX": {
"desc": "对 X 轴坐标进行倾斜",
"href": "ui/animation/Animation.skewX.html"
},
"Animation.skewY": {
"desc": "对 Y 轴坐标进行倾斜",
"href": "ui/animation/Animation.skewY.html"
},
"Animation.step": {
"desc": "表示一组动画完成",
"href": "ui/animation/Animation.step.html"
},
"Animation.top": {
"desc": "设置 top 值",
"href": "ui/animation/Animation.top.html"
},
"Animation.translate": {
"desc": "平移变换",
"href": "ui/animation/Animation.translate.html"
},
"Animation.translate3d": {
"desc": "对 xyz 坐标进行平移变换",
"href": "ui/animation/Animation.translate3d.html"
},
"Animation.translateX": {
"desc": "对 X 轴平移",
"href": "ui/animation/Animation.translateX.html"
},
"Animation.translateY": {
"desc": "对 Y 轴平移",
"href": "ui/animation/Animation.translateY.html"
},
"Animation.translateZ": {
"desc": "对 Z 轴平移",
"href": "ui/animation/Animation.translateZ.html"
},
"Animation.width": {
"desc": "设置宽度",
"href": "ui/animation/Animation.width.html"
},
"AudioContext.pause": {
"desc": "暂停音频",
"href": "media/audio/AudioContext.pause.html"
},
"AudioContext.play": {
"desc": "播放音频",
"href": "media/audio/AudioContext.play.html"
},
"AudioContext.seek": {
"desc": "跳转到指定位置",
"href": "media/audio/AudioContext.seek.html"
},
"AudioContext.setSrc": {
"desc": "设置音频地址",
"href": "media/audio/AudioContext.setSrc.html"
},
"AuthSetting": {
"desc": "用户授权设置信息,详情参考",
"href": "open-api/setting/AuthSetting.html"
},
"BackgroundAudioManager.onCanplay": {
"desc": "监听背景音频进入可播放状态事件",
"href": "media/background-audio/BackgroundAudioManager.onCanplay.html"
},
"BackgroundAudioManager.onEnded": {
"desc": "监听背景音频自然播放结束事件",
"href": "media/background-audio/BackgroundAudioManager.onEnded.html"
},
"BackgroundAudioManager.onError": {
"desc": "监听背景音频播放错误事件",
"href": "media/background-audio/BackgroundAudioManager.onError.html"
},
"BackgroundAudioManager.onNext": {
"desc": "监听用户在系统音乐播放面板点击下一曲事件(仅iOS)",
"href": "media/background-audio/BackgroundAudioManager.onNext.html"
},
"BackgroundAudioManager.onPause": {
"desc": "监听背景音频暂停事件",
"href": "media/background-audio/BackgroundAudioManager.onPause.html"
},
"BackgroundAudioManager.onPlay": {
"desc": "监听背景音频播放事件",
"href": "media/background-audio/BackgroundAudioManager.onPlay.html"
},
"BackgroundAudioManager.onPrev": {
"desc": "监听用户在系统音乐播放面板点击上一曲事件(仅iOS)",
"href": "media/background-audio/BackgroundAudioManager.onPrev.html"
},
"BackgroundAudioManager.onSeeked": {
"desc": "监听背景音频完成跳转操作事件",
"href": "media/background-audio/BackgroundAudioManager.onSeeked.html"
},
"BackgroundAudioManager.onSeeking": {
"desc": "监听背景音频开始跳转操作事件",
"href": "media/background-audio/BackgroundAudioManager.onSeeking.html"
},
"BackgroundAudioManager.onStop": {
"desc": "监听背景音频停止事件",
"href": "media/background-audio/BackgroundAudioManager.onStop.html"
},
"BackgroundAudioManager.onTimeUpdate": {
"desc": "监听背景音频播放进度更新事件,只有小程序在前台时会回调",
"href": "media/background-audio/BackgroundAudioManager.onTimeUpdate.html"
},
"BackgroundAudioManager.onWaiting": {
"desc": "监听音频加载中事件",
"href": "media/background-audio/BackgroundAudioManager.onWaiting.html"
},
"BackgroundAudioManager.pause": {
"desc": "暂停音乐",
"href": "media/background-audio/BackgroundAudioManager.pause.html"
},
"BackgroundAudioManager.play": {
"desc": "播放音乐",
"href": "media/background-audio/BackgroundAudioManager.play.html"
},
"BackgroundAudioManager.seek": {
"desc": "跳转到指定位置",
"href": "media/background-audio/BackgroundAudioManager.seek.html"
},
"BackgroundAudioManager.stop": {
"desc": "停止音乐",
"href": "media/background-audio/BackgroundAudioManager.stop.html"
},
"CameraContext.onCameraFrame": {
"desc": "获取 Camera 实时帧数据",
"href": "media/camera/CameraContext.onCameraFrame.html"
},
"CameraContext.startRecord": {
"desc": "开始录像",
"href": "media/camera/CameraContext.startRecord.html"
},
"CameraContext.stopRecord": {
"desc": "结束录像",
"href": "media/camera/CameraContext.stopRecord.html"
},
"CameraContext.takePhoto": {
"desc": "拍摄照片",
"href": "media/camera/CameraContext.takePhoto.html"
},
"CameraFrameListener.start": {
"desc": "开始监听帧数据",
"href": "media/camera/CameraFrameListener.start.html"
},
"CameraFrameListener.stop": {
"desc": "停止监听帧数据",
"href": "media/camera/CameraFrameListener.stop.html"
},
"Canvas.cancelAnimationFrame": {
"desc": "取消由 requestAnimationFrame 添加到计划中的动画帧请求",
"href": "canvas/Canvas.cancelAnimationFrame.html"
},
"Canvas.createImage": {
"desc": "创建一个图片对象",
"href": "canvas/Canvas.createImage.html"
},
"Canvas.getContext": {
"desc": "该方法返回 Canvas 的绘图上下文",
"href": "canvas/Canvas.getContext.html"
},
"Canvas.requestAnimationFrame": {
"desc": "在下次进行重绘时执行",
"href": "canvas/Canvas.requestAnimationFrame.html"
},
"CanvasContext.arc": {
"desc": "创建一条弧线",
"href": "canvas/CanvasContext.arc.html"
},
"CanvasContext.arcTo": {
"desc": "根据控制点和半径绘制圆弧路径",
"href": "canvas/CanvasContext.arcTo.html"
},
"CanvasContext.beginPath": {
"desc": "开始创建一个路径",
"href": "canvas/CanvasContext.beginPath.html"
},
"CanvasContext.bezierCurveTo": {
"desc": "创建三次方贝塞尔曲线路径",
"href": "canvas/CanvasContext.bezierCurveTo.html"
},
"CanvasContext.clearRect": {
"desc": "清除画布上在该矩形区域内的内容",
"href": "canvas/CanvasContext.clearRect.html"
},
"CanvasContext.clip": {
"desc": "从原始画布中剪切任意形状和尺寸",
"href": "canvas/CanvasContext.clip.html"
},
"CanvasContext.closePath": {
"desc": "关闭一个路径",
"href": "canvas/CanvasContext.closePath.html"
},
"CanvasContext.createCircularGradient": {
"desc": "创建一个圆形的渐变颜色",
"href": "canvas/CanvasContext.createCircularGradient.html"
},
"CanvasContext.createLinearGradient": {
"desc": "创建一个线性的渐变颜色",
"href": "canvas/CanvasContext.createLinearGradient.html"
},
"CanvasContext.createPattern": {
"desc": "对指定的图像创建模式的方法,可在指定的方向上重复元图像",
"href": "canvas/CanvasContext.createPattern.html"
},
"CanvasContext.draw": {
"desc": "将之前在绘图上下文中的描述(路径、变形、样式)画到 canvas 中",
"href": "canvas/CanvasContext.draw.html"
},
"CanvasContext.drawImage": {
"desc": "绘制图像到画布",
"href": "canvas/CanvasContext.drawImage.html"
},
"CanvasContext.fill": {
"desc": "对当前路径中的内容进行填充",
"href": "canvas/CanvasContext.fill.html"
},
"CanvasContext.fillRect": {
"desc": "填充一个矩形",
"href": "canvas/CanvasContext.fillRect.html"
},
"CanvasContext.fillText": {
"desc": "在画布上绘制被填充的文本",
"href": "canvas/CanvasContext.fillText.html"
},
"CanvasContext.lineTo": {
"desc": "增加一个新点,然后创建一条从上次指定点到目标点的线",
"href": "canvas/CanvasContext.lineTo.html"
},
"CanvasContext.measureText": {
"desc": "测量文本尺寸信息",
"href": "canvas/CanvasContext.measureText.html"
},
"CanvasContext.moveTo": {
"desc": "把路径移动到画布中的指定点,不创建线条",
"href": "canvas/CanvasContext.moveTo.html"
},
"CanvasContext.quadraticCurveTo": {
"desc": "创建二次贝塞尔曲线路径",
"href": "canvas/CanvasContext.quadraticCurveTo.html"
},
"CanvasContext.rect": {
"desc": "创建一个矩形路径",
"href": "canvas/CanvasContext.rect.html"
},
"CanvasContext.restore": {
"desc": "恢复之前保存的绘图上下文",
"href": "canvas/CanvasContext.restore.html"
},
"CanvasContext.rotate": {
"desc": "以原点为中心顺时针旋转当前坐标轴",
"href": "canvas/CanvasContext.rotate.html"
},
"CanvasContext.save": {
"desc": "保存绘图上下文",
"href": "canvas/CanvasContext.save.html"
},
"CanvasContext.scale": {
"desc": "在调用后,之后创建的路径其横纵坐标会被缩放",
"href": "canvas/CanvasContext.scale.html"
},
"CanvasContext.setFillStyle": {
"desc": "设置填充色",
"href": "canvas/CanvasContext.setFillStyle.html"
},
"CanvasContext.setFontSize": {
"desc": "设置字体的字号",
"href": "canvas/CanvasContext.setFontSize.html"
},
"CanvasContext.setGlobalAlpha": {
"desc": "设置全局画笔透明度",
"href": "canvas/CanvasContext.setGlobalAlpha.html"
},
"CanvasContext.setLineCap": {
"desc": "设置线条的端点样式",
"href": "canvas/CanvasContext.setLineCap.html"
},
"CanvasContext.setLineDash": {
"desc": "设置虚线样式",
"href": "canvas/CanvasContext.setLineDash.html"
},
"CanvasContext.setLineJoin": {
"desc": "设置线条的交点样式",
"href": "canvas/CanvasContext.setLineJoin.html"
},
"CanvasContext.setLineWidth": {
"desc": "设置线条的宽度",
"href": "canvas/CanvasContext.setLineWidth.html"
},
"CanvasContext.setMiterLimit": {
"desc": "设置最大斜接长度",
"href": "canvas/CanvasContext.setMiterLimit.html"
},
"CanvasContext.setShadow": {
"desc": "设定阴影样式",
"href": "canvas/CanvasContext.setShadow.html"
},
"CanvasContext.setStrokeStyle": {
"desc": "设置描边颜色",
"href": "canvas/CanvasContext.setStrokeStyle.html"
},
"CanvasContext.setTextAlign": {
"desc": "设置文字的对齐",
"href": "canvas/CanvasContext.setTextAlign.html"
},
"CanvasContext.setTextBaseline": {
"desc": "设置文字的竖直对齐",
"href": "canvas/CanvasContext.setTextBaseline.html"
},
"CanvasContext.setTransform": {
"desc": "使用矩阵重新设置(覆盖)当前变换的方法",
"href": "canvas/CanvasContext.setTransform.html"
},
"CanvasContext.stroke": {
"desc": "画出当前路径的边框",
"href": "canvas/CanvasContext.stroke.html"
},
"CanvasContext.strokeRect": {
"desc": "画一个矩形(非填充)",
"href": "canvas/CanvasContext.strokeRect.html"
},
"CanvasContext.strokeText": {
"desc": "给定的 (x, y) 位置绘制文本描边的方法",
"href": "canvas/CanvasContext.strokeText.html"
},
"CanvasContext.transform": {
"desc": "使用矩阵多次叠加当前变换的方法",
"href": "canvas/CanvasContext.transform.html"
},
"CanvasContext.translate": {
"desc": "对当前坐标系的原点 (0, 0) 进行变换",
"href": "canvas/CanvasContext.translate.html"
},
"CanvasGradient.addColorStop": {
"desc": "添加颜色的渐变点",
"href": "canvas/CanvasGradient.addColorStop.html"
},
"Color": {
"desc": "颜色",
"href": "canvas/Color.html"
},
"DownloadTask.abort": {
"desc": "中断下载任务",
"href": "network/download/DownloadTask.abort.html"
},
"DownloadTask.offHeadersReceived": {
"desc": "取消监听 HTTP Response Header 事件",
"href": "network/download/DownloadTask.offHeadersReceived.html"
},
"DownloadTask.offProgressUpdate": {
"desc": "取消监听下载进度变化事件",
"href": "network/download/DownloadTask.offProgressUpdate.html"
},
"DownloadTask.onHeadersReceived": {
"desc": "监听 HTTP Response Header 事件",
"href": "network/download/DownloadTask.onHeadersReceived.html"
},
"DownloadTask.onProgressUpdate": {
"desc": "监听下载进度变化事件",
"href": "network/download/DownloadTask.onProgressUpdate.html"
},
"EditorContext.clear": {
"desc": "清空编辑器内容",
"href": "media/editor/EditorContext.clear.html"
},
"EditorContext.format": {
"desc": "修改样式",
"href": "media/editor/EditorContext.format.html"
},
"EditorContext.getContents": {
"desc": "获取编辑器内容",
"href": "media/editor/EditorContext.getContents.html"
},
"EditorContext.insertDivider": {
"desc": "插入分割线",
"href": "media/editor/EditorContext.insertDivider.html"
},
"EditorContext.insertImage": {
"desc": "插入图片",
"href": "media/editor/EditorContext.insertImage.html"
},
"EditorContext.insertText": {
"desc": "覆盖当前选区,设置一段文本",
"href": "media/editor/EditorContext.insertText.html"
},
"EditorContext.redo": {
"desc": "恢复",
"href": "media/editor/EditorContext.redo.html"
},
"EditorContext.removeFormat": {
"desc": "清除当前选区的样式",
"href": "media/editor/EditorContext.removeFormat.html"
},
"EditorContext.setContents": {
"desc": "初始化编辑器内容,hmlt和delta同时存在时仅delta生效",
"href": "media/editor/EditorContext.setContents.html"
},
"EditorContext.undo": {
"desc": "撤销",
"href": "media/editor/EditorContext.undo.html"
},
"FileSystemManager.access": {
"desc": "判断文件/目录是否存在",
"href": "file/FileSystemManager.access.html"
},
"FileSystemManager.accessSync": {
"desc": null,
"href": "file/FileSystemManager.accessSync.html"
},
"FileSystemManager.appendFile": {
"desc": "在文件结尾追加内容",
"href": "file/FileSystemManager.appendFile.html"
},
"FileSystemManager.appendFileSync": {
"desc": null,
"href": "file/FileSystemManager.appendFileSync.html"
},
"FileSystemManager.copyFile": {
"desc": "复制文件",
"href": "file/FileSystemManager.copyFile.html"
},
"FileSystemManager.copyFileSync": {
"desc": null,
"href": "file/FileSystemManager.copyFileSync.html"
},
"FileSystemManager.getFileInfo": {
"desc": "获取该小程序下的 本地临时文件 或 本地缓存文件 信息",
"href": "file/FileSystemManager.getFileInfo.html"
},
"FileSystemManager.getSavedFileList": {
"desc": "获取该小程序下已保存的本地缓存文件列表",
"href": "file/FileSystemManager.getSavedFileList.html"
},
"FileSystemManager.mkdir": {
"desc": "创建目录",
"href": "file/FileSystemManager.mkdir.html"
},
"FileSystemManager.mkdirSync": {
"desc": null,
"href": "file/FileSystemManager.mkdirSync.html"
},
"FileSystemManager.readFile": {
"desc": "读取本地文件内容",
"href": "file/FileSystemManager.readFile.html"
},
"FileSystemManager.readFileSync": {
"desc": null,
"href": "file/FileSystemManager.readFileSync.html"
},
"FileSystemManager.readdir": {
"desc": "读取目录内文件列表",
"href": "file/FileSystemManager.readdir.html"
},
"FileSystemManager.readdirSync": {
"desc": null,
"href": "file/FileSystemManager.readdirSync.html"
},
"FileSystemManager.removeSavedFile": {
"desc": "删除该小程序下已保存的本地缓存文件",
"href": "file/FileSystemManager.removeSavedFile.html"
},
"FileSystemManager.rename": {
"desc": "重命名文件",
"href": "file/FileSystemManager.rename.html"
},
"FileSystemManager.renameSync": {
"desc": null,
"href": "file/FileSystemManager.renameSync.html"
},
"FileSystemManager.rmdir": {
"desc": "删除目录",
"href": "file/FileSystemManager.rmdir.html"
},
"FileSystemManager.rmdirSync": {
"desc": null,
"href": "file/FileSystemManager.rmdirSync.html"
},
"FileSystemManager.saveFile": {
"desc": "保存临时文件到本地",
"href": "file/FileSystemManager.saveFile.html"
},
"FileSystemManager.saveFileSync": {
"desc": null,
"href": "file/FileSystemManager.saveFileSync.html"
},
"FileSystemManager.stat": {
"desc": "获取文件 Stats 对象",
"href": "file/FileSystemManager.stat.html"
},
"FileSystemManager.statSync": {
"desc": null,
"href": "file/FileSystemManager.statSync.html"
},
"FileSystemManager.unlink": {
"desc": "删除文件",
"href": "file/FileSystemManager.unlink.html"
},
"FileSystemManager.unlinkSync": {
"desc": null,
"href": "file/FileSystemManager.unlinkSync.html"
},
"FileSystemManager.unzip": {
"desc": "解压文件",
"href": "file/FileSystemManager.unzip.html"
},
"FileSystemManager.writeFile": {
"desc": "写文件",
"href": "file/FileSystemManager.writeFile.html"
},
"FileSystemManager.writeFileSync": {
"desc": null,
"href": "file/FileSystemManager.writeFileSync.html"
},
"IBeaconInfo": {
"desc": null,
"href": "device/ibeacon/IBeaconInfo.html"
},
"Image": {
"desc": "图片对象",
"href": "canvas/Image.html"
},
"InnerAudioContext.destroy": {
"desc": "销毁当前实例",
"href": "media/audio/InnerAudioContext.destroy.html"
},
"InnerAudioContext.offCanplay": {
"desc": "取消监听音频进入可以播放状态的事件",
"href": "media/audio/InnerAudioContext.offCanplay.html"
},
"InnerAudioContext.offEnded": {
"desc": "取消监听音频自然播放至结束的事件",
"href": "media/audio/InnerAudioContext.offEnded.html"
},
"InnerAudioContext.offError": {
"desc": "取消监听音频播放错误事件",
"href": "media/audio/InnerAudioContext.offError.html"
},
"InnerAudioContext.offPause": {
"desc": "取消监听音频暂停事件",
"href": "media/audio/InnerAudioContext.offPause.html"
},
"InnerAudioContext.offPlay": {
"desc": "取消监听音频播放事件",
"href": "media/audio/InnerAudioContext.offPlay.html"
},
"InnerAudioContext.offSeeked": {
"desc": "取消监听音频完成跳转操作的事件",
"href": "media/audio/InnerAudioContext.offSeeked.html"
},
"InnerAudioContext.offSeeking": {
"desc": "取消监听音频进行跳转操作的事件",
"href": "media/audio/InnerAudioContext.offSeeking.html"
},
"InnerAudioContext.offStop": {
"desc": "取消监听音频停止事件",
"href": "media/audio/InnerAudioContext.offStop.html"
},
"InnerAudioContext.offTimeUpdate": {
"desc": "取消监听音频播放进度更新事件",
"href": "media/audio/InnerAudioContext.offTimeUpdate.html"
},
"InnerAudioContext.offWaiting": {
"desc": "取消监听音频加载中事件",
"href": "media/audio/InnerAudioContext.offWaiting.html"
},
"InnerAudioContext.onCanplay": {
"desc": "监听音频进入可以播放状态的事件",
"href": "media/audio/InnerAudioContext.onCanplay.html"
},
"InnerAudioContext.onEnded": {
"desc": "监听音频自然播放至结束的事件",
"href": "media/audio/InnerAudioContext.onEnded.html"
},
"InnerAudioContext.onError": {
"desc": "监听音频播放错误事件",
"href": "media/audio/InnerAudioContext.onError.html"
},
"InnerAudioContext.onPause": {
"desc": "监听音频暂停事件",
"href": "media/audio/InnerAudioContext.onPause.html"
},
"InnerAudioContext.onPlay": {
"desc": "监听音频播放事件",
"href": "media/audio/InnerAudioContext.onPlay.html"
},
"InnerAudioContext.onSeeked": {
"desc": "监听音频完成跳转操作的事件",
"href": "media/audio/InnerAudioContext.onSeeked.html"
},
"InnerAudioContext.onSeeking": {
"desc": "监听音频进行跳转操作的事件",
"href": "media/audio/InnerAudioContext.onSeeking.html"
},
"InnerAudioContext.onStop": {
"desc": "监听音频停止事件",
"href": "media/audio/InnerAudioContext.onStop.html"
},
"InnerAudioContext.onTimeUpdate": {
"desc": "监听音频播放进度更新事件",
"href": "media/audio/InnerAudioContext.onTimeUpdate.html"
},
"InnerAudioContext.onWaiting": {
"desc": "监听音频加载中事件",
"href": "media/audio/InnerAudioContext.onWaiting.html"
},
"InnerAudioContext.pause": {
"desc": "暂停",
"href": "media/audio/InnerAudioContext.pause.html"
},
"InnerAudioContext.play": {
"desc": "播放",
"href": "media/audio/InnerAudioContext.play.html"
},
"InnerAudioContext.seek": {
"desc": "跳转到指定位置",
"href": "media/audio/InnerAudioContext.seek.html"
},
"InnerAudioContext.stop": {
"desc": "停止",
"href": "media/audio/InnerAudioContext.stop.html"
},
"IntersectionObserver.disconnect": {
"desc": "停止监听",
"href": "wxml/IntersectionObserver.disconnect.html"
},
"IntersectionObserver.observe": {
"desc": "指定目标节点并开始监听相交状态变化情况",
"href": "wxml/IntersectionObserver.observe.html"
},
"IntersectionObserver.relativeTo": {
"desc": "使用选择器指定一个节点,作为参照区域之一",
"href": "wxml/IntersectionObserver.relativeTo.html"
},
"IntersectionObserver.relativeToViewport": {
"desc": "指定页面显示区域作为参照区域之一",
"href": "wxml/IntersectionObserver.relativeToViewport.html"
},
"InterstitialAd.destroy": {
"desc": "销毁插屏广告实例",
"href": "ad/InterstitialAd.destroy.html"
},
"InterstitialAd.load": {
"desc": "加载插屏广告",
"href": "ad/InterstitialAd.load.html"
},
"InterstitialAd.offClose": {
"desc": "取消监听插屏广告关闭事件",
"href": "ad/InterstitialAd.offClose.html"
},
"InterstitialAd.offError": {
"desc": "取消监听插屏错误事件",
"href": "ad/InterstitialAd.offError.html"
},
"InterstitialAd.offLoad": {
"desc": "取消监听插屏广告加载事件",
"href": "ad/InterstitialAd.offLoad.html"
},
"InterstitialAd.onClose": {
"desc": "监听插屏广告关闭事件",
"href": "ad/InterstitialAd.onClose.html"
},
"InterstitialAd.onError": {
"desc": "监听插屏错误事件",
"href": "ad/InterstitialAd.onError.html"
},
"InterstitialAd.onLoad": {
"desc": "监听插屏广告加载事件",
"href": "ad/InterstitialAd.onLoad.html"
},
"InterstitialAd.show": {
"desc": "显示插屏广告",
"href": "ad/InterstitialAd.show.html"
},
"LivePlayerContext.exitFullScreen": {
"desc": "退出全屏",
"href": "media/live/LivePlayerContext.exitFullScreen.html"
},
"LivePlayerContext.mute": {
"desc": "静音",
"href": "media/live/LivePlayerContext.mute.html"
},
"LivePlayerContext.pause": {
"desc": "暂停",
"href": "media/live/LivePlayerContext.pause.html"
},
"LivePlayerContext.play": {
"desc": "播放",
"href": "media/live/LivePlayerContext.play.html"
},
"LivePlayerContext.requestFullScreen": {
"desc": "进入全屏",
"href": "media/live/LivePlayerContext.requestFullScreen.html"
},
"LivePlayerContext.resume": {
"desc": "恢复",
"href": "media/live/LivePlayerContext.resume.html"
},
"LivePlayerContext.snapshot": {
"desc": "截图",
"href": "media/live/LivePlayerContext.snapshot.html"
},
"LivePlayerContext.stop": {
"desc": "停止",
"href": "media/live/LivePlayerContext.stop.html"
},
"LivePusherContext.pause": {
"desc": "暂停推流",
"href": "media/live/LivePusherContext.pause.html"
},
"LivePusherContext.pauseBGM": {
"desc": "暂停背景音",
"href": "media/live/LivePusherContext.pauseBGM.html"
},
"LivePusherContext.playBGM": {
"desc": "播放背景音",
"href": "media/live/LivePusherContext.playBGM.html"
},
"LivePusherContext.resume": {
"desc": "恢复推流",
"href": "media/live/LivePusherContext.resume.html"
},
"LivePusherContext.resumeBGM": {
"desc": "恢复背景音",
"href": "media/live/LivePusherContext.resumeBGM.html"
},
"LivePusherContext.setBGMVolume": {
"desc": "设置背景音音量",
"href": "media/live/LivePusherContext.setBGMVolume.html"
},
"LivePusherContext.snapshot": {
"desc": "快照",
"href": "media/live/LivePusherContext.snapshot.html"
},
"LivePusherContext.start": {
"desc": "开始推流,同时开启摄像头预览",
"href": "media/live/LivePusherContext.start.html"
},
"LivePusherContext.startPreview": {
"desc": "开启摄像头预览",
"href": "media/live/LivePusherContext.startPreview.html"
},
"LivePusherContext.stop": {
"desc": "停止推流,同时停止摄像头预览",
"href": "media/live/LivePusherContext.stop.html"
},
"LivePusherContext.stopBGM": {
"desc": "停止背景音",
"href": "media/live/LivePusherContext.stopBGM.html"
},
"LivePusherContext.stopPreview": {
"desc": "关闭摄像头预览",
"href": "media/live/LivePusherContext.stopPreview.html"
},
"LivePusherContext.switchCamera": {
"desc": "切换前后摄像头",
"href": "media/live/LivePusherContext.switchCamera.html"
},
"LivePusherContext.toggleTorch": {
"desc": "切换手电筒",
"href": "media/live/LivePusherContext.toggleTorch.html"
},
"LogManager.debug": {
"desc": "写 debug 日志",
"href": "base/debug/LogManager.debug.html"
},
"LogManager.info": {
"desc": "写 info 日志",
"href": "base/debug/LogManager.info.html"
},
"LogManager.log": {
"desc": "写 log 日志",
"href": "base/debug/LogManager.log.html"
},
"LogManager.warn": {
"desc": "写 warn 日志",
"href": "base/debug/LogManager.warn.html"
},
"MapContext.getCenterLocation": {
"desc": "获取当前地图中心的经纬度",
"href": "media/map/MapContext.getCenterLocation.html"
},
"MapContext.getRegion": {
"desc": "获取当前地图的视野范围",
"href": "media/map/MapContext.getRegion.html"
},
"MapContext.getRotate": {
"desc": "获取当前地图的旋转角",
"href": "media/map/MapContext.getRotate.html"
},
"MapContext.getScale": {
"desc": "获取当前地图的缩放级别",
"href": "media/map/MapContext.getScale.html"
},
"MapContext.getSkew": {
"desc": "获取当前地图的倾斜角",
"href": "media/map/MapContext.getSkew.html"
},
"MapContext.includePoints": {
"desc": "缩放视野展示所有经纬度",
"href": "media/map/MapContext.includePoints.html"
},
"MapContext.moveToLocation": {
"desc": "将地图中心移置当前定位点,此时需设置地图组件 show-location 为true",
"href": "media/map/MapContext.moveToLocation.html"
},
"MapContext.translateMarker": {
"desc": "平移marker,带动画",
"href": "media/map/MapContext.translateMarker.html"
},
"NodesRef.boundingClientRect": {
"desc": "添加节点的布局位置的查询请求",
"href": "wxml/NodesRef.boundingClientRect.html"
},
"NodesRef.context": {
"desc": "添加节点的 Context 对象查询请求",
"href": "wxml/NodesRef.context.html"
},
"NodesRef.fields": {
"desc": "获取节点的相关信息",
"href": "wxml/NodesRef.fields.html"
},
"NodesRef.scrollOffset": {
"desc": "添加节点的滚动位置查询请求",
"href": "wxml/NodesRef.scrollOffset.html"
},
"OffscreenCanvas.getContext": {
"desc": "该方法返回 OffscreenCanvas 的绘图上下文",
"href": "canvas/OffscreenCanvas.getContext.html"
},
"RecorderManager.onError": {
"desc": "监听录音错误事件",
"href": "media/recorder/RecorderManager.onError.html"
},
"RecorderManager.onFrameRecorded": {
"desc": "监听已录制完指定帧大小的文件事件",
"href": "media/recorder/RecorderManager.onFrameRecorded.html"
},
"RecorderManager.onInterruptionBegin": {
"desc": "监听录音因为受到系统占用而被中断开始事件",
"href": "media/recorder/RecorderManager.onInterruptionBegin.html"
},
"RecorderManager.onInterruptionEnd": {
"desc": "监听录音中断结束事件",
"href": "media/recorder/RecorderManager.onInterruptionEnd.html"
},
"RecorderManager.onPause": {
"desc": "监听录音暂停事件",
"href": "media/recorder/RecorderManager.onPause.html"
},
"RecorderManager.onResume": {
"desc": "监听录音继续事件",
"href": "media/recorder/RecorderManager.onResume.html"
},
"RecorderManager.onStart": {
"desc": "监听录音开始事件",
"href": "media/recorder/RecorderManager.onStart.html"
},
"RecorderManager.onStop": {
"desc": "监听录音结束事件",
"href": "media/recorder/RecorderManager.onStop.html"
},
"RecorderManager.pause": {
"desc": "暂停录音",
"href": "media/recorder/RecorderManager.pause.html"
},
"RecorderManager.resume": {
"desc": "继续录音",
"href": "media/recorder/RecorderManager.resume.html"
},
"RecorderManager.start": {
"desc": "开始录音",
"href": "media/recorder/RecorderManager.start.html"
},
"RecorderManager.stop": {
"desc": "停止录音",
"href": "media/recorder/RecorderManager.stop.html"
},
"RenderingContext": {
"desc": "Canvas 绘图上下文",
"href": "canvas/RenderingContext.html"
},
"RequestTask.abort": {
"desc": "中断请求任务",
"href": "network/request/RequestTask.abort.html"
},
"RequestTask.offHeadersReceived": {
"desc": "取消监听 HTTP Response Header 事件",
"href": "network/request/RequestTask.offHeadersReceived.html"
},
"RequestTask.onHeadersReceived": {
"desc": "监听 HTTP Response Header 事件",
"href": "network/request/RequestTask.onHeadersReceived.html"
},
"RewardedVideoAd.destroy": {
"desc": "销毁激励视频广告实例",
"href": "ad/RewardedVideoAd.destroy.html"
},
"RewardedVideoAd.load": {
"desc": "加载激励视频广告",
"href": "ad/RewardedVideoAd.load.html"
},
"RewardedVideoAd.offClose": {
"desc": "取消监听用户点击 ",
"href": "ad/RewardedVideoAd.offClose.html"
},
"RewardedVideoAd.offError": {
"desc": "取消监听激励视频错误事件",
"href": "ad/RewardedVideoAd.offError.html"
},
"RewardedVideoAd.offLoad": {
"desc": "取消监听激励视频广告加载事件",
"href": "ad/RewardedVideoAd.offLoad.html"
},
"RewardedVideoAd.onClose": {
"desc": "监听用户点击 ",
"href": "ad/RewardedVideoAd.onClose.html"
},
"RewardedVideoAd.onError": {
"desc": "监听激励视频错误事件",
"href": "ad/RewardedVideoAd.onError.html"