昨天将博客启用了 HTTPS,发现一个包含 js 的 markdown 文章显示异常。
导致异常的原因是,https 页面引用了 http 的 js 文件,即 vuejs 的 cdn 链接使用了 http 的。
解决方法就是直接在 mysql 中进行替换
UPDATE articles SET content = REPLACE(content, "http", "https") where slug = 'how-to-get-input-value-in-vuejs';
如果需要批量替换数据表中的 http 为 https
UPDATE articles SET content = REPLACE(content, 'http:', 'https:') WHERE INSTR(content, 'http:') > 0;
INSTR
Returns the position of the first occurrence of substring substr in string str.
微信关注我哦 👍
我是来自山东烟台的一名开发者,有感兴趣的话题,或者软件开发需求,欢迎加微信 zhongwei 聊聊, 查看更多联系方式