鍍金池/ 問(wèn)答/ HTML問(wèn)答
嘟尛嘴 回答

修改在djangoUeditor的setting.py文件中的imageUrlPrefix即可。

壞脾滊 回答

可以使用代理啊,將localhost/api/轉(zhuǎn)發(fā)到example.com/
在開(kāi)發(fā)環(huán)境中可以配置devServer的proxyTable
在正式環(huán)境中可以配置nginx、tomcat等服務(wù)器的轉(zhuǎn)發(fā)規(guī)則

假灑脫 回答

測(cè)試了一下、確實(shí)選中的灰色塊下面溢出了、

圖片描述

看著有些許別扭、

(本人后端、請(qǐng)忽略我的審美)

傻叼 回答

那有啥不能的 審查一下元素 看看什么類名 display:none!important把他干掉

  1. 能貼圖別貼代碼。
  2. 你把 script 放到了根實(shí)例的范圍里了,根實(shí)例初始化的時(shí)候直接解析了 {{abc}}(并不是自定義組件解析報(bào)錯(cuò),是根實(shí)例)。

不行的,下一次有可能拿不到

  • 用戶換設(shè)備或者刪除小程序重進(jìn)
  • 手動(dòng)在設(shè)置中取消授權(quán)
舊螢火 回答

代碼

for(var key in state){
   if(key.substr(0,3)==='new'){
        console.info(state[key])
   }
}

效果圖:
clipboard.png

焚音 回答

this.callback 做回調(diào),不傳參數(shù)能拿得到 response ???

脾氣硬 回答

已修正 數(shù)字也轉(zhuǎn)正了
附上https://codepen.io/wanroulin/... 供參考

主要修改的片段為內(nèi)圈旋轉(zhuǎn)角度 及 數(shù)字校正角度

  // scale
        ctx.setTransform(1, 0, 0, 1, Math.floor(W / 2), Math.floor(W / 2));
        ctx.beginPath();
        ctx.lineWidth = 2;
        ctx.strokeStyle = 'rgba(255, 255, 255, .3)';
        // there should be 10 lines
        var stepAngle = (Math.PI * 2) / 10;
        // begin angle
        ctx.rotate(0.7 * Math.PI);
        // draw only 9 of the 10 lines
        for (var i = 0; i < 9; i++) {
            ctx.moveTo(Math.floor(W / 3) - 50, 0);
            ctx.lineTo(Math.floor(W / 3) - 55, 0);
            ctx.rotate(stepAngle);
        }
        ctx.stroke();
        ctx.setTransform(1, 0, 0, 1, 0, 0);

        // scale txt
        ctx.fillStyle = 'rgba(255, 255, 255, .4)';
        ctx.font = "1.5vh play";
        ctx.textAlign = 'center';
        ctx.textBaseline = 'middle';

        var stepAngle = (Math.PI * 2) / 10;
        var currentAngle = 0.20 * Math.PI;

        for (i = 0; i < 9; i++) {
            // move to center, unrotated
            ctx.setTransform(1, 0, 0, 1, Math.floor(W / 2), Math.floor(W / 2));
            // set current rotation
            ctx.rotate(currentAngle)
            // move the context to our text's position
            ctx.translate(0, Math.floor(W / 3) - 65);
            // inverse rotate so we face North
            ctx.rotate(-currentAngle);
            // fill at 0,0
            ctx.fillText(0 + 1 * i, 0, 0);
            // increment currentAngle for next iteration
            currentAngle += stepAngle;
        }
        ctx.setTransform(1, 0, 0, 1, 0, 0);

        ctx.restore();
孤島 回答

如果你是在chrome瀏覽器下,可能是因?yàn)榻昧薴lash,看一下

clipboard.png

瀏覽器網(wǎng)址那里是否有提示禁用flash

懶洋洋 回答

可以在指令的宿主元素下加一個(gè)ng-container作為動(dòng)態(tài)組件容器,ng-container會(huì)在渲染時(shí)消失。
指令可以做一些修改:

@Directive({
  selector: '[appTxt]'
})
export class TxtCopyDirective {

  @Input('appTxt') dyView:any

  constructor(
    private el: ElementRef, 
    private renderer2: Renderer2, 
    public viewContainerRef: ViewContainerRef, 
    private componentFactoryResolver: ComponentFactoryResolver
  ) {}

  @HostListener('click', ['$event']) onclick(event: any) {
    this.dyView.clear();
    const componentFactory = this.componentFactoryResolver.resolveComponentFactory(動(dòng)態(tài)組件);
    this.dyView.createComponent(componentFactory);
  }

}

目標(biāo)元素:

<span [appTxt]="dyView">
  click
  <ng-container #dy></ng-container>
</span>

目標(biāo)元素所在組件獲取ng-container容器作為參數(shù)傳給指令:

@ViewChild('dy',{read:ViewContainerRef}) dyView:ViewContainerRef
奧特蛋 回答

babel可以配置env

{
  "env": {
    "test": {
      "presets": ["env"]
    },
    "production": {
      "presets": [
        ["env",
        {
          "modules": false
        }]
      ]
    }
  },
  "ignore": [
    "dist/*.js"
  ]
}

源自:.babelrc#env-option

然后,可以在npm scripts里配置BABEL_ENV

"scripts": {
  "test": "cross-env BABEL_ENV='test' jest --watchAll --coverage",
  "prettier": "prettier --write --no-semi {.,test}/*.js",
  "build": "cross-env BABEL_ENV='production' rollup -c"
}
柒喵 回答
require('./pages/home.vue')
殘淚 回答

antd是用less寫的,所以應(yīng)該是要在less的配置里也用ExtractTextPlugin

半心人 回答

首先,題主說(shuō)對(duì)于iframe不了解,那就先附上鏈接w3c iframe

這里主要使用了iframe的src屬性,你應(yīng)該考慮怎么把你的button和你的iframe怎么一一對(duì)應(yīng)。

茍活 回答

默認(rèn)你已經(jīng)會(huì)node和使用node操作數(shù)據(jù)庫(kù)的前提下,你需要看一下Nginx

敢試 回答

其實(shí)主要是:@vue/cli-service 依賴 webpack

最核心的是:https://github.com/vuejs/vue-...

"webpack": "^4.15.1",