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条)

报告相同问题?

悬赏问题

  • ¥15 微信会员卡等级和折扣规则
  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分