angularjs – 更新到1.2后变量无效的表单操作

前端之家收集整理的这篇文章主要介绍了angularjs – 更新到1.2后变量无效的表单操作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在以前版本的AngularJS中使用以下代码生成了一个表单操作:
<form action="{{ api }}/products/image">

但是,我刚刚更新,现在显然太松了。

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

在1.2.4中如何实现相同的功能

@H_301_12@
@H_301_12@
自Angular 1.2.x以来,您可以使用 bind only one expression as URL

因此,在控制器上,执行以下操作:

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

并在模板中:

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

更新

根据@Fourth的建议:

<form action="{{ api + '/products/image' }}">
@H_301_12@ 原文链接:https://www.f2er.com/angularjs/144189.html

猜你在找的Angularjs相关文章