Maison > Questions et réponses > le corps du texte
比如说下面这个页面:
https://code.angularjs.org/1.4.7/docs/api/ngRoute/provider/$routeProvider
讲$routeProvider的when方法的route参数中,标识每个属性的类型的这些字符串是什么意思?
template – {string=|function()=}
{Array.<Object>}
resolve - {Object.<string, function>=}
{string=|function()=} 中的 “function()=” 是什么意思?
{Array.<Object>} 是什么意思?
{Object.<string, function>=} 中的 “function>=” 又是什么意思?
仅有的幸福2017-05-15 16:59:01
Le paramètre du modèle peut être une chaîne codée en dur ou une fonction dynamique, telle que :
$route.when("/user", {
template: "tpl-user.html"
});
$route.when("/user", {
template: function(params) {
return "tpl-user.html";
}
});