admin管理员组文章数量:1345884
I want to load a html content with RequireJS like this:
define(function (require) {
"use strict";
return function (id) {
var url = 'text!screens/' + id + '.html';
var html = require(url);
}; });
But I get this error: Error: Module name "text!screens/home.html_unnormalized2" has not been loaded yet for context: _
If I try it in this way:
define(function (require) {
"use strict";
return function () {
var html = require('text!screens/home.html');
}; });
everything is ok. But this approach isn't very nice due to hardcore tipped url. How can I solve this?
I want to load a html content with RequireJS like this:
define(function (require) {
"use strict";
return function (id) {
var url = 'text!screens/' + id + '.html';
var html = require(url);
}; });
But I get this error: Error: Module name "text!screens/home.html_unnormalized2" has not been loaded yet for context: _
If I try it in this way:
define(function (require) {
"use strict";
return function () {
var html = require('text!screens/home.html');
}; });
everything is ok. But this approach isn't very nice due to hardcore tipped url. How can I solve this?
Share Improve this question edited Oct 15, 2013 at 6:30 Dareon asked Oct 15, 2013 at 3:58 DareonDareon 3844 silver badges14 bronze badges 2-
How are you using the first code block? (i.e. where is that code that has the
"home"
string? – Hamza Kubba Commented Oct 15, 2013 at 4:01 - It is used as a dependency in another module and there it will be called like a function: load(id). – Dareon Commented Oct 15, 2013 at 4:30
1 Answer
Reset to default 11Inline parametric require
calls can only run asynchronously for modules that have not been loaded yet, as is your case. The principle is (also note url
is in an array):
var url = 'text!screens/' + id + '.html';
require([url],
function(text) {
// use text
},
function(err) { // OPTIONAL BUT GOOD PRACTICE
// handle error
}
);
This has the inconvenience of not beign able to return the value immediately. Also take a look at the principle of promises (implemented by many libraries, jQuery too).
本文标签: javascriptHow to load html content dynamically with RequireJSStack Overflow
版权声明:本文标题:javascript - How to load html content dynamically with RequireJS - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743731534a2529267.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论