//在 __construct方法中注入 MagentoFrameworkControllerResultJsonFactory
public function __construct(
MagentoFrameworkControllerResultJsonFactory $jsonFactory
) {
$this->jsonFactory = $jsonFactory;
}
//在方法中使用
$resultJson = $this->jsonFactory->create();
return $resultJson->setData($data);