Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I was generating a form action in my previous version of AngularJS using this code:

<form action="{{ api }}/products/image">

However, I just updated and now that apparently is too loose.

Error while interpolating: {{ api }}/products/image Strict Contextual Escaping disallows interpolations that concatenate multiple expressions when a trusted value is required.

How do I achieve the same functionality in 1.2.4?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
924 views
Welcome To Ask or Share your Answers For Others

1 Answer

Since Angular 1.2.x, you can bind only one expression as URL.

Hence, on your controller, do the following:

$scope.actionUrl = $scope.api + '/products/image';

And in the template:

<form action="{{ actionUrl }}">

Update

As suggested by @Fourth:

<form action="{{ api + '/products/image' }}">

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...