this.data={
data:1,
data2:2
}
delete(this.data["data"]);
delete(对象["需要删除的字段"]);
...
yekong
4年前 (2021-04-13)
喜欢
程序更容易理解
问题:函数或者方法输入输出的参数类型,外部条件等
动态语言的约束:需要手动调试等过程,
有了Typescript:代码本身就可以回答上诉问题
效率更高
在不同的代码块和定义中进行跳转
代码自动补全
更少的错误
编译期间能够发现大部分错误
杜绝一些比较常见错误
非常...
yekong
4年前 (2021-04-13)
喜欢
vue.config.js 添加配置
var _Ip='线上地址'
module.exports = {
devServer: {
proxy: {
'/productData': {
...
yekong
4年前 (2021-04-11)
喜欢
找到vue.config.js 添加 lintOnSave:false
module.exports={
lintOnSave:false
}
...
yekong
4年前 (2021-04-10)
喜欢
这里使用了momentjs插件用来格式化时间。
html
<p>{{time}}</p>
js
setInterval(function () {
that.time = moment().format("YY...
yekong
4年前 (2021-04-08)
喜欢
name自定义文件名
headers自定义headers
<el-upload
action=""
list-type="picture-card"
...
yekong
4年前 (2021-04-08)
喜欢
html
<div class="table-main" id="table" :class="{fixed:fixed}"></div>
js
document.addEventListen...
yekong
4年前 (2021-04-08)
喜欢
引入高度地图
<script
type="text/javascript"
src="https://webapi.amap.com/maps?v=1.4.15&key=4287...
yekong
4年前 (2021-04-07)
喜欢
在路由中的meta.requiresAuth添加参数来判断是否需要登录才可以访问
const routes = [
{
path: '/Login',
name: 'Login',
component: () =>...
yekong
4年前 (2021-04-05)
喜欢
在axios拦截器里进行配置
if (router.history.current.fullPath) {
router.push({path: '/reg/login', query: {url:router.history.cu...
yekong
4年前 (2021-04-02)
喜欢