本文介绍了用更新变无效后1.2表单操作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我就是用这个code产生的 AngularJS 我的previous版本表单操作:

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.

错误而插值:{{API}} /产品/形象
  严格的语境不允许转义时,需要一个值得信赖的值,连接多个EX pressions插值。

我如何实现相同的功能 1.2.4

How do I achieve the same functionality in 1.2.4?

推荐答案

由于角1.2.x版本,你可以的。

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';

和模板:

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

更新

由于建议的@Fourth:

As suggested by @Fourth:

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

这篇关于用更新变无效后1.2表单操作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 22:08