我已经将我的应用程序从wicket 1.x迁移到wicket 8.x,现在在iframe上显示pdf时遇到了错误。它在iframe上显示为空白。我试图在页面加载时在html的iframe标记中显示pdf,但它显示为空白。
eoxn13cs1#
请在spring安全模块xml文件中添加以下http安全头标记,以允许spring安全在spring应用程序中显示html iframe:
<security:http use-expressions="false"> <security:headers> <security:frame-options disabled="true"></security:frame-options> </security:headers> </security:http>
这个解决方案为我工作,现在我的应用程序能够显示iframe而没有任何错误,并且能够在iframe中加载pdf文件。
1条答案
按热度按时间eoxn13cs1#
请在spring安全模块xml文件中添加以下http安全头标记,以允许spring安全在spring应用程序中显示html iframe:
这个解决方案为我工作,现在我的应用程序能够显示iframe而没有任何错误,并且能够在iframe中加载pdf文件。