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

Categories

0 votes
909 views
in Technique[技术] by (71.8m points)

angularjs - Form action with variable not valid after update to 1.2

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

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

1 Answer

0 votes
by (71.8m points)

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' }}">

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...