我正在使用REST API作为数据源,不确定如何在Dropdown小部件中手动设置值
窗口小部件数据源设置为#include <iostream>
using namespace std;
class Box{
public:
static int objectCount;
//Constructor definition
Box(double l = 2.0 double b = 2.0 double h = 2.0) {
cout << "Constructor Called." << endl;
length = l;
breadth = b;
height = h;
//Increase everytime the object is created
objectCount++;
}
double Volume() {
return length * breadth* height;
}
private:
double length;
double breadth;
double height;
};
// Initialize static member of class Box
int Box::objectCount = 0;
int main(void) {
Box Box1(3.3, 1.2, 1.5);
Box Box2(8.5, 6.0, 2.0);
cout << "Total objects: " << Box::objectCount << endl;
return 0;
}
,选项设置为Client
。 “显示字段”为@datasource.items
。
在加载小部件/数据之后,我正在运行一个脚本,我能够将所有选项作为一个数组获取并找到需要选择的选项,但是无法将值设置为小部件。
我尝试的是name
,但无论索引是什么,它似乎总是选择第一个选项。