일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 산업제어시스템
- 리눅스 마스터 1급 합격 후기
- 데이터베이스 생성 예제
- 리눅스 마스터 2급 실기
- C# 문법 기초
- 웹 앱 만드는법
- html
- 제어시스템 보안
- 웹 개발
- 리눅스마스터 1급 실기
- 정보처리기능사
- 리눅스 마스터 1급 필기
- c#
- MySQL
- Vue.js
- 리눅스마스터
- C# 문법
- 웹 구현
- 리눅스마스터 1급 필기
- 산업제어시스템 보안
- mysql 기초문법
- 리눅스 마스터 1급 실기
- C# SELECT 문
- C#\
- node.js
- 프론트엔드
- 웹 앱 개발
- 백엔드
- 웹앱 구현
- C# SELCT
- Today
- Total
목록웹 개발 (4)
보안 루피
export default { data() { return { productId: 0, productDetail: {}, productImage: [], total: 0, totalPrice: 0 }; }, created() { this.productId = this.$route.query.product_id; this.getProductDetail(); this.getProductImage(); }, methods: { calculatePrice(cnt) { let total = this.total + cnt; if (total 0) { this.productDetail = productDetail[0]; this.totalPrice = this.totalPrice = this.productDetail..
목록 강아지 고양이 조류 {{ product.product_name }} {{ product.category1 }} {{ product.category2 }} {{ product.category3 }} 장바구니 담기 주문하기 {{ product.product_price }}원 export default { data() { return { productList: [] }; }, created() { this.getProductList(); }, methods: { async getProductList() { this.productList = await this.$api("/api/productList", {}); //app.js 에 api타고 맞는 sql문 결과값 가져옴 console.log(this.pr..
import { createApp } from 'vue' import App from './App.vue' import router from './router' import mixins from './mixins' //부트스트랩 임포 //import 'bootstrap' //import 'bootstrap/dist/css/bootstrap.min.css' import store from './store' //해당 모듈 import 후 use를 꼭 사용해야 사용할 수 있다. createApp(App).use(router).mixin(mixins).use(store).mount('#app') //카카오 SDK초기화 window.Kakao.init("93e035de88e6057997f1e7856b13e079"..
const { query } = require("express") module.exports ={ productList: { //Productlist : 상품 리스트 가져오는 쿼리 query : 'select t1.*, t2.path, t3.category1, t3.category2, t3.category3 from t_product t1, t_image t2, t_category t3 where t1.id = t2.product_id and t2.type =1 and t1.category_id =t3.id' }, productDetail:{ query : 'select t1.*, t2.path, t3.category1, t3.category2, t3.category3 from t_product t1, ..