@鲍永道 谢谢远程帮助。
原先 错误写法:
_renderView: function(){
            var _super = this._super.apply(this, arguments);
            ....
            return this._super();
        },
正确写法:
_renderView: function(){
            var result = this._super.apply(this, arguments);
            ....
            return result;
        },
原先的返回的就是错误的,this._super()不是父级返回。