yii2:- how can i manage angularjs post request in yii2
问题 I am trying to send post request from angular controller to yii front end controller. Here is my controller.js 'use strict'; define(['angular', 'd3', 'd3Cloud', 'services'], function (angular, d3) { /* Controllers */ return angular.module('oc.controllers', ['oc.services']) .controller('InitCtrl', ['$scope','$http', function ($scope,$http) { $scope.loginFun = function() { var formData = {username:$scope.txtUserName, pwd:$scope.txtPassword}; $http.post("http://localhost/yii2-angular-seed-master