我在以前版本的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中如何实现相同的功能?
自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' }}">