• 前后端交互中出现的问题(三)


    检查后台传输的数据和方法
      1》右键查看源代码
      2》找到<script src="/api/AbpServiceProxies/GetAll?type=angular&amp;v=636191473125693932"></script>单击
      3》寻找服务接口名,查看对应的增删改查方法

        <script src="/api/AbpServiceProxies/GetAll?type=angular&v=636276841036740459"></script>
        <script src="/api/AbpServiceProxies/GetAll?v=636276841036750459"></script>
        <script src="/AbpScripts/GetScripts?v=636276841036750459" type="text/javascript"></script>
    

     点击后查看

      this.getTktIssuePlatformsForCombobox = function (httpParams) {
                        return $http(angular.extend({
                            url: abp.appPath + 'api/services/app/baseDataLookup/GetTktIssuePlatformsForCombobox',
                            method: 'POST',
                            data: JSON.stringify({})
                        }, httpParams));
                    };
                    
                    this.getBankAccountForCombobox = function (httpParams) {
                        return $http(angular.extend({
                            url: abp.appPath + 'api/services/app/baseDataLookup/GetBankAccountForCombobox',
                            method: 'POST',
                            data: JSON.stringify({})
                        }, httpParams));
                    };
                    
                    this.getTransActionTypeForCombobox = function (input, httpParams) {
                        return $http(angular.extend({
                            url: abp.appPath + 'api/services/app/baseDataLookup/GetTransActionTypeForCombobox',
                            method: 'POST',
                            data: JSON.stringify(input)
                        }, httpParams));
                    };
                    
                    this.getTransActionTypeFlagForCombobox = function (httpParams) {
                        return $http(angular.extend({
                            url: abp.appPath + 'api/services/app/baseDataLookup/GetTransActionTypeFlagForCombobox',
                            method: 'POST',
                            data: JSON.stringify({})
                        }, httpParams));
                    };
    
  • 相关阅读:
    python学习笔记之---面向对象的三大特性
    python学习笔记之---类的属性和方法的访问总结
    python学习笔记之--类的三种方法
    python学习笔记之--面向对象技术
    python学习笔记之--面向对象和面向过程
    整数反转
    逻辑运算&map函数&filter函数&reduce函数
    python整理&&集合学习
    python基本数据类型
    python基础&条件语句
  • 原文地址:https://www.cnblogs.com/baihb/p/6703369.html
Copyright © 2020-2023  润新知