使用dojo解析动态加载的内容一直报 parse() error Error: Tried to register widget with id==borderContainer but that i

记录一下:
第一: js中的时候,不要轻易给 空格, id能不给就尽量不要给。
第二: 主要是想怎么去百度,怎么去搜索
第三: 很多都能再百度上能搜到,如果搜不到就是方法不对。
show: function () {
if (this.href === undefined) { return; }
var _this = this;

request.get(this.href, {
	query: this.data,
	preventCache: true,
	handleAs: "html",
	sync: false
}).then(function (result) {
	_this.contentNode.innerHTML = result;
	parser.parse({
		rootNode: _this.contentNode   -- 对添加的内容 进行解析
	});
	_this._underlay.show();
	domStyle.set(_this.domNode, {
		"zIndex": _this._underlay.zIndex + 1,
		"display": "block"
	});

	domConstruct.place(_this.domNode, window.document.body);
});

},
parse 解析的几种方法;
https://www.cnblogs.com/sere/p/4897155.html

你可能感兴趣的:(使用dojo解析动态加载的内容一直报 parse() error Error: Tried to register widget with id==borderContainer but that i)