我有我的表格
<form name="form" ng-submit="submit()" action="<?php echo Route::get('auth'); ?>" ng-controller="LoginCtrl">
<!-- the rest -->
</form>
和咖啡脚本部分
app.controller 'LoginCtrl', ($scope) ->
$scope.submit = (where) ->
# want to the get the form action here
是否有任何“角度”方式来获取表单 DOM 元素或表单的操作。我无法对 Javascript 文件中的操作进行硬编码,因为它会根据当前的 uri 而变化。