モジュールでコンテンツを定義し、コンテンツを必要とするようにしたい。私はこれがあります。モジュールをロードしてrequireJSのコンテンツを定義する方法はありますか?
test.htmlという
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
<script data-main="A" src="require.js"></script>
</head>
<body>
The content of the document......
</body>
</html>
A.js
require(["B", "C"],function(B, C){
alert(JSON.stringify(B));
alert(JSON.stringify(C));
});
B.js
define(function(B) {
alert("B");
return {"B":1};
});
C.js
define(function(C) {
alert("C");
return {"C":1};
});
/*
require(["B"],function(B){
alert(JSON.stringify(B));
});
*/
しかし、どのようにCにBをロードさせ、定義したものの一部としてそれを使用するのですか?
おかげ
モジュール "C"を定義する際に、 "B"を依存関係として定義できます。見てください[ここ](http://requirejs.org/docs/api.html#defdep) –