我在文档Custom field中找到了类型,但是我不知道如何使用它。
答案 0 :(得分:0)
属性datasource.parameters
接收一个数组,您可以使用它来传递您自己的字段设置。例如,自定义字段的格式为JSON:
"custom-field": {
"name": "Custom Field",
"type": "datasource",
"caption": "Choose a cool source",
"datasource.class": "MyCustomDatasource",
"datasource.parameters": ["my_custom_setting": "1"]
"limit": 1,
"required": false,
"subtypes": ["my_form"]
}
在数据源类中,您可以使用getParameter()
访问它们:
MyCustomDatasource.php
public function loadResults() {
...
$param_value = $this->getParameter('my_custom_setting');
\\ now you can do anything with the value
}