duan2428 2018-04-09 17:02
浏览 36
已采纳

Typo3 8.7.x / Extbase / Typoscript:如何在使用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>
  • 写回答

2条回答 默认 最新

  • doujie3888 2018-04-10 08:35
    关注

    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.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?