我有一个表单,可以将数据提交到我的rails后端。提交后,表单将运行ajax调用。它使用的网址如下:http://localhost:3000/panel/vehicles?utf8=%E2%9C%93&q%5Bcode_cont%5D=66
。如何使用ng-submit
?
答案 0 :(得分:1)
<input type="hidden" ng-value="getUrl()"/>
$scope.getUrl = function(){
return $location.absUrl();
}