我正在使用与Tomcat 7.0.23捆绑在一起的Liferay 6.1.1 GA2。
我无法使用“添加”按钮将Portlet添加到Liferay页面上

在Firebug控制台中,我看到以下错误:TypeError:Portlet.js文件中的portletBound为null。

如果运行调试器,我会在此函数中看到var portletBound为NULL

var addPortletReturn = function(html) {
var container = placeHolder.get('parentNode');
var portletBound = A.Node.create('<div></div>');
portletBound.plug(A.Plugin.ParseContent);
portletBound.setContent(html);
portletBound = portletBound.get('firstChild');
var id = portletBound.attr('id');


然后我只看到一张gif图片,什么也没发生。
有人可以帮忙吗?

最佳答案

我有一个解决方案:在portal.property json.service.auth.token.enabled中将其设置为TRUE,
将其设置为FALSE后,一切正常。

09-03 19:46