Alfresco 공유 검색 페이지는 Aikau와 함께 구현됩니다. 더 일반적인 질문에 관심이 있습니다. 아이카우 위젯을 디버그 할 수 있습니까? 내가 가진Alfresco Aikau 디버깅
이 문제에 대한 몇 가지 링크를 발견한다, 그러나 그들은 로깅에 대한 자세한 실제없는 이야기 자바 스크립트 디버깅 :
- http://docs.alfresco.com/5.1/tasks/dev-extensions-share-tutorials-debugging.html
- https://github.com/Alfresco/Aikau/blob/master/tutorial/chapters/Tutorial4.md
가정하자 나는 다음과 같은 Aikau 위젯 야외가/search/AlfSearchResult 및 그 안에있는 다음 메소드 :
/**
* This function is called to create a
* [SearchResultPropertyLink]{@link module:alfresco/renderers/SearchResultPropertyLink} widget
* to render the displayName of the result. It can be overridden to replace the default widget
* with a reconfigured version.
*
* @instance
*/
createDisplayNameRenderer: function alfresco_search_AlfSearchResult__createDisplayNameRenderer() {
// jshint nonew:false
var config = {
id: this.id + "_DISPLAY_NAME",
currentItem: this.currentItem,
pubSubScope: this.pubSubScope,
propertyToRender: "displayName",
renderSize: "large",
newTabOnMiddleOrCtrlClick: this.newTabOnMiddleOrCtrlClick,
defaultNavigationTarget: this.navigationTarget
};
if (this.navigationTarget)
{
config.navigationTarget = this.navigationTarget;
}
new SearchResultPropertyLink(config, this.nameNode);
}
내가 중단 점을 삽입하고 내가 그것을 속성을의 평가에 대한 this.currentItem을 위해 사용되는 라인에서 실행을 막을 수있는 방법이 있습니까?
감사합니다. 그것은 효과가 있었다. –
문제 없음 - 항상 도와 드리겠습니다! 해결책이 만족 스럽다면 투표를하고 투표를 수락하십시오. –
낮은 반품으로 인한 과반수 투표를 허용하지 않습니다. –