Date.now() 메소드는 UTC 기준으로 1970년 1월 1일 0시 0분 0초부터 현재까지 경과된 밀리초를 반환합니다. console.log(Date.now()); // 1711935339429 Date.toDateString() 메소드는 주어진 날짜를 현지 시간대로 해석하고 그 중 날짜 부분만 표시하는 문자열을 반환합니다. const currentDateOnly = new Date().toDateString(); console.log(currentDateOnly); // "Mon Apr 01 2024" Date.toLocaleDateString() 메소드는 지역화된 날짜 정보를 문자열로 반환합니다. const currentDate = new Date().toLocaleString(); console..
// 저장 프로시저 방식 public async Task InsertWordMatrix(WordMatrixEntity wordMatrixEntity) { SqlParameter p0 = new SqlParameter("@wordSeq", wordMatrixEntity.WordSeq ?? ""); SqlParameter p1 = new SqlParameter("@wordMatrixGroupSeq", 0); p1.Direction = ParameterDirection.Output; using (var context = new SQLDBContext()) { string sp = "exec up_WordMatrix_insert @wordSeq, @wordMatrixGroupSeq out"; await cont..
@page "/call-dotnet-1" Call .NET 1 Call .NET Example 1 Trigger .NET static method See the result in the developer tools console. @code { [JSInvokable] public static Task ReturnArrayAsync() { return Task.FromResult(new int[] { 1, 2, 3 }); } }
SqlQueryRaw는 원시 SQL 쿼리를 기반으로 LINQ 쿼리를 만듭니다. 이 쿼리는 데이터베이스 공급자가 기본적으로 지원하는 스칼라 형식의 결과 집합을 반환합니다. 결론은 프로그램 코드 방식으로 쿼리를 작성해서 실행해 준다는 이야기이다. public List GetWord() { using (var context = new SQLDBContext()) { List wordEntities = context.Database.SqlQueryRaw($""" select word.WordSeq , word.Spelling , word.Meaning , word.NationSeq , word.Level from dbo.Word as word with(nolock) """ ).ToList(); return wo..
@rendermode InteractiveServer @inject IJSRuntime JSRuntime Save Changes @code { private async Task SaveNewWord() { try { await JSRuntime.InvokeVoidAsync("myJsFunction", "some message"); // await JSRuntime.InvokeVoidAsync("Test"); } catch (JSException ex) { Console.WriteLine(ex.Message); } } }
@onclick 이벤트는 blazor에서 사용되는 클릭 이벤트로 javascript의 "onclick" 이벤트와 다르게 동작 합니다. blazor의 @onclick 이벤트의 경우 서버 코드(@code) 블록의 메소드를 호출할때 사용됩니다. 또한 @onclick 이벤트가 동작하기 위해서는 @rendermode InteractiveServer 가 선언 되어야 합니다. @rendermode InteractiveServer Save Changes Save Changes @code { private void SaveNewWord() { } private void SaveNewWord(string parameter) { } }
SqlQuery와 ExecuteSql의 차이점을 알아야한다. SqlQuery List wordEntities = context.Database.SqlQuery($""" select word.WordSeq , word.Spelling , word.Meaning , word.NationSeq from dbo.Word as word with(nolock) """ ).ToList(); ExecuteSql & ExecuteSqlAsync public long SetWord(WordEntity wordEntity) { using (var context = new SQLDBContext()) { return context.Database.ExecuteSql($""" insert into dbo.Word ( Spell..
- Total
- Today
- Yesterday
- MainActor
- 람다식(lambda expression)
- 제품 등록
- 표현 언어(expression language)
- java.sql
- system.io
- React
- 스프링 시큐리티(spring security)
- 메이븐(maven)
- 문자 자르기
- 상품 등록
- 진수 변환
- jstl(java standard tag library)-core
- 특정 문자를 기준으로 자르기
- nl2br
- REST API
- java 키워드 정리
- java web-mvc
- 스프링 프레임워크(spring framewordk)
- System.Diagnostics
- 스프링 시큐리티(spring security)-http basic 인증
- jsp 오픈 소스
- 스프링 프레임워크(spring framework)
- .submit()
- jstl(java standard tag library)
- await
- java-개발 환경 설정하기
- error-java
- In App Purchase
- 인텔리제이(intellij)
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |