上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页
摘要: 解决方式一 添加按键修饰符@keyup.enter.native 解决方式二 把事件绑定到父元素(外框),需注意多个input问题 <div @keyup.enter="login"> <input type="text"> </div> 阅读全文
posted @ 2020-06-25 11:03 liessay 阅读(4356) 评论(0) 推荐(0) 编辑
摘要: 系统默认提供了获取当前用户的api方法 https://localhost:44364/api/identity/my-profile 手工实现方法:abp后台获取当前用户需要在AppService应用层注入CurrentUser currentUser,如本例 using System; usin 阅读全文
posted @ 2020-06-23 13:18 liessay 阅读(3313) 评论(0) 推荐(0) 编辑
摘要: 因为Abp vNext没找到Vue的模板,网上也没找到相关vNext的例子,只能自己试着写写,asp.net core abp vue都是刚学不久,所以很粗糙也可能有错误的地方,如果您看到请指正,谢谢 一、新建Vue项目,为了方便我是用vue ui方式建的,增加了element(样式),axios( 阅读全文
posted @ 2020-06-23 12:56 liessay 阅读(3459) 评论(1) 推荐(1) 编辑
摘要: 在Shop.Application.Contracts项目中Permissions目录下ShopPermissions定义权限名 namespace Shop.Permissions { public static class ShopPermissions { public const strin 阅读全文
posted @ 2020-06-21 17:27 liessay 阅读(1472) 评论(0) 推荐(0) 编辑
摘要: App.vue添加组件 <template> <div id="app"> <dataTable></dataTable> </div> </template> <script> import dataTable from "./components/dataTable.vue"; export d 阅读全文
posted @ 2020-06-19 15:59 liessay 阅读(341) 评论(0) 推荐(0) 编辑
摘要: 在swagger中查看登录需要用post方式访问,Abp需要用application/json方式调用 请求体 Postman调用方式 例:访问所有用户,调用Api地址为http://localhost:21021/api/services/app/User/GetAll,访问方式为Get Head 阅读全文
posted @ 2020-06-13 17:07 liessay 阅读(959) 评论(0) 推荐(0) 编辑
摘要: 有时候实际业务中主键不一定叫Id,比如示例数据库Northwind中的RegionID,TerritoryID等,本示例用Abp框架并以Northwind数据库Region表为数据依据 一、在Core领域层创建Region实体 using System.ComponentModel.DataAnno 阅读全文
posted @ 2020-06-13 15:48 liessay 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 此处演示为MVC项目,同样权限定义需要到Application中才能在获取API时进行权限验证 一、打开Sample.Core\Authorization\PermissionNames.cs增加授权名称 代码 //Controller权限名称 public const string Pages_A 阅读全文
posted @ 2020-06-13 09:07 liessay 阅读(662) 评论(0) 推荐(0) 编辑
摘要: 增加显示菜单 Sample.Web.MVC项目中找到startup目录打开SampleNavigationProvider.cs,根据现有内容添加以下内容 .AddItem( new MenuItemDefinition( PageNames.Address, L("Address"), url: 阅读全文
posted @ 2020-06-12 16:18 liessay 阅读(810) 评论(0) 推荐(0) 编辑
摘要: 本示例不讲概念,只讲怎么用,概念性的内容没有比官方文档更清楚的了,我也正在学习,可能理解的地方有不对的欢迎一起交流,但需要您了解以下内容才能看明白 asp.net core Entity Framework ,数据迁移 DDD领域驱动设计 (Entities、Repositories、Domain 阅读全文
posted @ 2020-06-10 09:14 liessay 阅读(2175) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 20 下一页