新建vue.config.js module.exports = { css: { loaderOptions: { sass: { // 全局引入变量和 mixin additionalData: ` @import "@/assets/scss/variable.scss"; @import " ...
分类:
Web程序 时间:
2021-06-06 19:40:33
阅读次数:
0
一般的.net项目在IIS发布只需要将文件夹指向项目的根目录即可,但是指向.net core项目不会发布成功。哪怕指向 /bin/Debug/netcoreapp3.1/ 也不行。 那么如何发布呢? 方法一 点击项目右键 选择“发布”。 选择发布类型为文件夹,选择文件夹路径 一般为 /bin/Rel ...
分类:
Web程序 时间:
2021-06-06 19:10:43
阅读次数:
0
Preliminaries Linux Basics Change Password: passwd shutdown: sudo shutdown -h 3 (broadcast to all users in 3 mins) reboot: sudo reboot -r now create a ...
分类:
其他好文 时间:
2021-06-06 18:53:34
阅读次数:
0
<script src="js/jquery-1.12.4.js"></script><script> window.onload = function (ev) { /* jQ入口函数传入不同参数得到的实例 1.传入 '' null undefined NaN 0 false 2.传入html片段 ...
分类:
Web程序 时间:
2021-06-06 18:43:59
阅读次数:
0
(function f1() { var num = 10; window.num = num;})(); console.log(num); ...
分类:
Web程序 时间:
2021-06-05 18:35:46
阅读次数:
0
在 module 实现里,务必导入下列 module: import { ReactiveFormsModule } from '@angular/forms'; template 实现代码: <input type="text" [formControl]="jerryFormControl"> ...
分类:
其他好文 时间:
2021-06-05 18:35:02
阅读次数:
0
https://sap.github.io/spartacus-docs/reference-app-structure/ 该概念在 SAP Spartacus 3.1 版本引入。 这个 Reference App Structure 是 SAP 推荐客户在搭建自己的 Spartacus Store ...
分类:
移动开发 时间:
2021-06-05 18:32:27
阅读次数:
0
存储字段 eg: <script type="text/javascript"> $('#option_btn').change(function () { project_id = $('#option_btn').val(); var project_ids = $('#option_btn') ...
分类:
其他好文 时间:
2021-06-05 18:11:43
阅读次数:
0
本章主要回答两个问题: (1)为什么需要有JavaScript(JS有什么作用)? (2)怎么用? HTML负责呈现什么内容,CSS负责以何种方式来呈现。 HTML+CSS:实现了静态页面。 实际上,我们更多的页面的要求是动态的,这就需要用到js了,通过js操纵HTML和css <!DOCTYPE ...
分类:
编程语言 时间:
2021-06-05 17:54:07
阅读次数:
0
ES Module和CommonJS的模块化有一些不同之处: 一方面它使用了import和export关键字; 另一方面它采用编译期的静态分析,并且也加入了动态引用的方式; 一、ES Module模块采用export和import关键字来实现模块化: export负责将模块内的内容导出; impor ...
分类:
其他好文 时间:
2021-06-05 17:48:56
阅读次数:
0