angular.js - angularjs文档中的一些疑问
为情所困
为情所困 2017-05-15 16:57:01
0
1
464

比如说下面这个页面:
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>=” 又是什么意思?

为情所困
为情所困

reply all(1)
仅有的幸福

The template parameter can be a hard-coded string or a dynamic function, such as:

$route.when("/user", {
   template: "tpl-user.html"
});
$route.when("/user", {
   template: function(params) {
      return "tpl-user.html";
   }
});
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!