常用面试题和知识点集锦(一)

1,

個人情報の取扱いについて

ーーーーーーーーーーーーーーー
HPに「個人情報保護方針」と「個人情報の取り扱いにてついて」を追加したいです。
TOPページから1クリックで開けるようにしてください。
以下参考サイトです。
https://phenogen.co.jp/privacy_policy/
 
 「個人情報保護方針」と「個人情報の取り扱いにてついて」の書類は別添付いたします。
ーーーーーーーーーーーーーーーーー

2,すぐに実践できる! SQLパフォーマンスチューニング5選
https://www.w2solution.co.jp/tech/2021/11/26/eg_ti_ti_sql5/#3

Oracle 的sql优化提高性能
https://m.yisu.com/zixun/31733.html

3,数组 对象方法

https://www.w3school.com.cn/jsref/jsref_obj_array.asp

4,=====Vue的状态管理pinna

Pinia(youtube)
https://www.youtube.com/watch?v=sVj4rbbS_ws

ソースコード:
https://github.com/codingwithjustin/pinia-cart-example

5,■ThymeleafでPOSTしたデータを簡単にDBへ登録する方法
https://medium-company.com/thymeleaf%E3%81%A7post%E3%81%97%E3%81%9F%E3%83%87%E3%83%BC%E3%82%BF%E3%82%92jpa%E3%81%A7%E7%99%BB%E9%8C%B2/#1

6,

Reac初心者でも読めば必ずわかるReactのRedux講座
https://reffect.co.jp/react/react-redux-for-beginner#useSelector_Hooks

7,阻止冒泡

stop - 阻止冒泡

<!DOCTYPE html>
<html>

<head>
    <meta charset="utf-8">
    <title>Vue 测试实例 - 菜鸟教程(runoob.com)</title>
    <script src="https://cdn.staticfile.org/vue/2.2.2/vue.min.js"></script>
</head>

<body>
    <div id="app">
        <div @click="divClick()" style="width:300px ;height: 200px;background-color: rgb(115, 224, 197);">
            <!-- .stop - 阻止冒泡 -->
            <button @click.stop="btnClick()" style="margin:20px ;">登録</button>
        </div>
    </div>

    <script>

猜你喜欢

转载自blog.csdn.net/weixin_45936141/article/details/128201543