Error when retrieving webform elements with a text format field

Created on 13 January 2023, about 2 years ago
Updated 4 February 2025, about 2 months ago

I have Drupal 9.5.1 installed and webform 6.2.0-beta5 with webform rest.

If I add a text format field and use the basic html to a webform and call:

/webform_rest/{webform_id}/elements?_format=json it errors with:

The website encountered an unexpected error. Please try again later.<br><br><em class="placeholder">Symfony\Component\Serializer\Exception\NotNormalizableValueException</em>: Could not normalize object of type &quot;Drupal\Core\Url&quot;, no supporting normalizer found. in <em class="placeholder">Symfony\Component\Serializer\Serializer-&gt;normalize()</em> (line <em class="placeholder">178</em> of <em class="placeholder">/ftphome/dev_hr_wallingford_refresh/vendor/symfony/serializer/Serializer.php</em>). <pre class="backtrace">Symfony\Component\Serializer\Serializer-&gt;normalize() (Line: 167)

As a test if I unset [format] in the array items just before return new ModifiedResourceResponse($form['elements']); in WebformElementsResource.php it works.

Not sure if this is a Drupal core issue or webform rest?

🐛 Bug report
Status

Active

Version

4.0

Component

Code

Created by

🇬🇧United Kingdom rviner

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • 🇨🇦Canada dongtian

    One possible solution is to adjust the output format of the 'About' URL for the 'text_format' field.

    function your_module_process_text_format_field(array $element, FormStateInterface $form_state, array &$complete_form) {
      if (isset($element['format']['help']['about']['#url']) &&
        $element['format']['help']['about']['#url'] instanceof Url) {
        // Normalize the URL object to a string.
        $element['format']['help']['about']['#url'] = $element['format']['help']['about']['#url']->toString();
      }
      return $element;
    }
Production build 0.71.5 2024