1. XenForo 1.5.14 中文版——支持中文搜索!现已发布!查看详情
  2. Xenforo 爱好者讨论群:215909318 XenForo专区

新闻 AngularJS 1.5.0-rc.0 发布,HTML 的 Web 框架 下载

Discussion in '软件资讯' started by 漂亮的石头, 2015-12-10.

  1. 漂亮的石头

    漂亮的石头 版主 Staff Member

    Joined:
    2012-02-10
    Messages:
    487,355
    Likes Received:
    47
    AngularJS 1.5.0-rc.0 发布,更新如下:

    特性

    Bug 修复

    重大更新


    This is only a breaking change to a feature that was added in beta 2. If you have not started using multi-slot transclusion then this will not affect you.

    The keys and values for the transclude map of the directive definition have been swapped around to be more consistent with the other maps, such as scope and bindToController.

    Now the key is the slot name and the value is a normalized element selector.


    Using a promise as timeout is no longer supported and will log a warning. It never worked the way it was supposed to anyway.

    Before:

    var deferred = $q.defer();var User = $resource('/api/user/:id', {id: '@id'}, {
    get: {method: 'GET', timeout: deferred.promise}
    });var user = User.get({id: 1}); // sends a requestdeferred.resolve(); // aborts the request// Now, we need to re-define `User` passing a new promise as `timeout`// or else all subsequent requests from `someAction` will be abortedUser = $resource(...);
    user = User.get({id: 2});

    After:

    var User = $resource('/api/user/:id', {id: '@id'}, {
    get: {method: 'GET', cancellable: true}
    });var user = User.get({id: 1}); // sends a requestuser.$cancelRequest(); // aborts the requestuser = User.get({id: 2});

    The $sanitize service will now remove instances of the <use> tag from the content passed to it.

    This element is used to import external SVG resources, which is a security risk as the $sanitizeservice does not have access to the resource in order to sanitize it.


    A new property to access route resolves is now available on the scope of the route. The default name for this property is $resolve. If your scope already contains a property with this name then it will be hidden or overwritten.

    In this case, you should choose a custom name for this property, that does not collide with other properties on the scope, by specifying the resolveAs property on the route.


    A new property to access all the locals for an expression is now available on the scope. This property is $locals.


    • If scope.$locals already exists, the way to reference this property is now this.$locals.


    • If the locals themselves include a property $locals then the way to reference that is now $locals.$locals.

    更多内容请看:CHANGELOG.md

    下载页面:1.5.0-rc.0
    AngularJS 1.5.0-rc.0 发布,HTML 的 Web 框架下载地址
     
Loading...