Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Kony 可视化器上有一个带有 Camera 小部件和 Image2 小部件的表单。如何设置 Image2 小部件以显示相机小部件拍摄的图像。
我有这个表单的 js 控制器,所以如果有办法通过它来实现,请告诉我!
在 Kony 论坛的帮助下想通了:
如果您在表单(frmHome)中添加了相机(cam1)和图像(img)小部件,那么您可以在相机 onCapture 事件中调用以下代码段,以使用相机小部件拍摄的图像设置图像小部件。
frmHome.img.rawBytes = frmHome.cam1.rawBytes;
希望这可以帮助其他遇到此问题的人!