2016年6月7日 星期二

操作 ng-repeat 動態產生的物件

.directive("cardid", function () {
        return {
            link: function (scope, element) {
                $(element).mask('9999999999999');
            }
        }
    })

沒有留言:

自訂權限驗證機制

// 使用 filter [Route("api/[controller]")] [ApiController] [Authorize] [TypeFilter(typeof(CustomAsyncAuthorizationFilter))] public c...