简体   繁体   中英

Typo3 8.7.x / Extbase / Typoscript: How to remove the anchor wrap when using RECORDS

I'm using an extension template for json output. I want to get the record by id.

ajax = PAGE
ajax {
  typeNum = 99
  config {
    disableAllHeaderCode = 1
    additionalHeaders = Content-type:application/json
    admPanel = 0
    debug = 0
  }
  10 = RECORDS
  10 {
    tables = tt_content
    source = 77
  }
}

But my output has an anchor link before the data I want:

<a id="c2"></a>{"errors":[],"messages":["some message"]}

How to remove the

<a id="c2"></a>

If you use the RECORDS object you will get the default rendering of the records. And for tt_content that might include the anchor which is wrapped before for each element.

If you want your own rendering you can use a CONTENT object with your own renderObj property.

Or you modify the global rendering of tt_content records (either in typoscript for CSC or in the fluid layout file for FSC) to skip the anchor for pagetype 99.

Thanks @Bernd Wilke, now it's working with the following code

ajax = PAGE
ajax {
  typeNum = 99
  config {
    disableAllHeaderCode = 1
    additionalHeaders = Content-type:application/json
    admPanel = 0
    debug = 0
  }
  //not working, because it's not respect the storage
  #10 < tt_content.list.20.myext_p1
  10 = CONTENT
  10 {
    table = tt_content   
    renderObj = COA
    renderObj {
      10 < tt_content.list.20.myext_p1
    }
  }
}

When I'm right, with this code, it takes the content from the page from the page where the ext Template is defined and copies the rendering from the plugin. The uncommented code is not working because it's not using the content from the page where I inserted my plugin with the defined storage.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM