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.
我想在我的 userFunc 中访问整个 Element 的全部数据。
我通过 var_dumping userFunc 的 secondArgument (fObj) 进行了修补,发现它在嵌套的深处,但我不知道是否有更简单的方法来访问它。
我想创建一个复选框列表,具体取决于来自 flexform 内另一张工作表的数据。
您是否尝试访问您的方法参数?
public function bla($content, $conf) {}
另外尝试输入cObj:
$test = $this->cObj; $data = $test->getData();