如标题所示:是否可以停用/关闭JavaFx WebViews HTML渲染引擎?
我想在同一个WebView-Component中看到原始HTML代码。
将
task :compile_assets, roles: [:app, :processor], primary: true do
更改为contentType
,会产生一个空的WebView:
text
答案 0 :(得分:4)
纯文本的mime类型为text/plain
,因此您需要:
String contentType = "text/plain";