0
我有我的形式獲得主叫形式的AngularJS action屬性
<form name="form" ng-submit="submit()" action="<?php echo Route::get('auth'); ?>" ng-controller="LoginCtrl">
<!-- the rest -->
</form>
而且CoffeeScript的部分
app.controller 'LoginCtrl', ($scope) ->
$scope.submit = (where) ->
# want to the get the form action here
有沒有「角」的方式來獲取表單DOM元素或形式的行動。我無法在JavaScript文件中對動作進行硬編碼,因爲它取決於當前的uri而變化。