1

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

在萤火虫控制台我看到这个错误: TypeError: portletBound is null from the portlet.js文件。

如果运行调试器,我会看到该函数中的 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 图像并没有发生任何事情。有人可以帮忙吗?

4

1 回答 1

2

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

于 2013-09-03T13:47:41.680 回答