Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

"TypeError: Cannot read property 'split' of undefined" when using ng-attr-srcset with potentially null value #14470

Closed
ghost opened this issue Apr 19, 2016 · 1 comment

Comments

@ghost
Copy link

ghost commented Apr 19, 2016

Do you want to request a feature or report a bug?
Bug report.

What is the current behavior?
We're seeing an internal Angular error:

TypeError: Cannot read property 'split' of undefined

when trying to use ng-attr-srcset, where the expression can be potentially undefined. To reproduce,:

    <img data-ng-attr-srcset="{{undefined}}">

What is the expected behavior?

Normally, ng-attr-defined attributes are supposed to be ignored if the associated value is undefined, but in this case, we're hitting an error:

    // split srcset into tuple of uri and descriptor except for the last item
    var rawUris = trimmedSrcset.split(pattern);

where trimmedSrcset is undefined under the above situation.

What is the motivation / use case for changing the behavior?

ng-attr is breaking with regards to "srcset". It should be consistent with ng-attr's behavior of undefined for other attribute names. What's happening is an internal error that should be fixed, since it's in the framework rather than application code.

Which versions of Angular, and which browser / OS are affected by this issue? Did this work in previous versions of Angular? Please also test with the latest stable and snapshot (https://code.angularjs.org/snapshot/) versions.

Angular 1.5.

@gkalpak
Copy link
Member

gkalpak commented Apr 20, 2016

This is indeed inconvenient and should be fixed. PRs are most welcome 😃 (it should be an easy fix).

In the meantime, the recommened way to handle this, is using the dedicated ngScrset directive anyway.

rphv added a commit to rphv/angular.js that referenced this issue Apr 22, 2016
rphv added a commit to rphv/angular.js that referenced this issue Apr 23, 2016
rphv added a commit to rphv/angular.js that referenced this issue Apr 26, 2016
gkalpak pushed a commit that referenced this issue Apr 26, 2016
Previously, calling `Attributes#$set('srcset', value)` on an `<img>` element would throw if `value`
were undefined, as it assumed `value` is always a string.
This commit fixes the issue, by skipping the unnecessary string manipulation when `value` is not
defined.

Closes #14470

Closes #14493
gkalpak pushed a commit that referenced this issue Apr 26, 2016
Previously, calling `Attributes#$set('srcset', value)` on an `<img>` element would throw if `value`
were undefined, as it assumed `value` is always a string.
This commit fixes the issue, by skipping the unnecessary string manipulation when `value` is not
defined.

Closes #14470

Closes #14493
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant