ygj6

Results 94 comments of ygj6

不是很理解你的问题,可以提供一个示例代码来说明么,正常发起请求的URL中域名是多少就应该请求到对应的服务器。

我们可以在每次选择完图片后触发`$imgAdd`事件,下面的链接有一些其他使用方式,你可以参考看下: https://github.com/hinesboy/mavonEditor/blob/master/doc/cn/upload-images.md

Thank you very much, you can use the following options to make mavonEditor Preview-only mode. ``` vue ``` API:https://github.com/hinesboy/mavonEditor/blob/master/README-EN.md#api

可以使用`标签 ![image](https://user-images.githubusercontent.com/7699524/110190561-e2add200-7e5e-11eb-84ac-3cec259c2e79.png)

浏览器默认行为是,只滚动鼠标指针所处区域的滚动条,如下,当鼠标指针处于(不需要点击)文本框中就滚动编辑器,当鼠标处于页面中则滚动整个页面 ![aaa](https://user-images.githubusercontent.com/7699524/103456004-f9379000-4d2c-11eb-8c1a-c017951a47d7.gif)

我测试了一下,光标是正确保留在原来位置,你可以在这个[官方示例](http://106.15.232.22/)上试试,如果只是你的环境才有这个问题,那就需要你提供一个重现用例了。

这个大概是因为`iRender()`触发了编辑器的重新渲染,光标位置被重置了,再新版本未修复这个问题之前你可以使用如下方式规避这个问题 。 ```javascript let obj = this.$refs.md.getTextareaDom(); let startPos = obj.selectionStart; let endPos = obj.selectionEnd; this.$refs.md.$img2Url(pos, "test.jpg"); setTimeout(function(){ obj.selectionStart = startPos; obj.selectionEnd = endPos; },1) ```

This [project](https://github.com/shishohf/bootymapper) uses `Makefile` instead of `cmake`, so you don't need to use `DCMAKE_TOOLCHAIN_FILE`. You have chosen `vcpkg` to install `libevent`. Since `vcpkg` installs libraries that are not in the...

There are two steps you should take to resolve this issue: (1) Install openssl on Windows You can simply download the installation package from [here](http://slproweb.com/products/Win32OpenSSL.html) and double click it. Or...

I ran your program with or without the patch mentioned by *ploxiln*, and they all completed successfully. My Visual Studio 2019 has the following configuration: `Windows SDK version: 10.0.18362.0` `Platform...