2

http://www.dominoguru.com/pages/11182010085538.htmlhttp://dpastov.blogspot.dk/2011/01/trying-to-get-full-control-over-xpage.html它被解释为设置

xsp.client.script.libraries=none

在 xsp.properties 文件中。

我这样做了,但后来出现以下错误

http://pastebin.com/9qiUVPri

它在 Domino 8.5.3FP2 上运行

出于什么原因有任何想法?

4

2 回答 2

6

您还需要禁用资源聚合:

xsp.resources.aggregate=false
于 2013-02-18T15:34:59.987 回答
0

我有一个解决方案。首先是 xsp.properties 中的这个设置

xsp.resources.aggregate=true

如果设置为 false,那么也可以使用

xsp.client.script.libraries=none

页面上不再出现错误。html 现在看起来像这样

<!DOCTYPE html>
<html lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title></title>
</head>
<body>
<span id="view:label1">Test</span></body>
</html>
于 2013-02-18T15:35:45.510 回答