AngularJS $ http.post并使用路径

时间:2018-08-07 12:33:51

标签: python angularjs http

我正在尝试做一个基本的UI,管理员用户可以在mongoDB中进行CRUD操作。我正在使用angularJs,html和python。

问题是,我对python不太熟悉,无法获得与python后端交互的角度代码。我对C#和MVC更加熟悉,我基本上想做以下调用的python等效项,

$scope.searchStudents = function () {
    $http.post('/Admin/searchStudents', JSON.stringify($scope.stu))
    .then(
    function successCallback(response) { ...... });}

因此,当我将函数名称这样命名为angular时,无法调用该函数。在MVC中,这可以正常工作。互联网说要进行API调用,但这绝对不是我想做的事情。如果您有任何想法,我将不胜感激。

0 个答案:

没有答案