感谢分享
好嘞,我试试
目前 ST 写一个根据规则查询的插件,感觉也只能这样了
是使用 compositionstart,compositionend 事件解决的吗?没搞明白,出现中文重复拼音
看过去年 RubyConf 楼主的演讲和历史文章,感觉是个很严谨有趣的大佬啊。。。不清楚情况
刚去的时候,组长同事什么的会帮忙配置环境吧
好酷啊
是的,不是开源的,也是竞争不过的一个点吧
厉害啊,能分享源码吗
项目实践:https://github.com/GengCen-Qin/rails-quotes
rails guide 中文 AI 翻译:https://ruby-china.org/topics/43244
这个问题很坑,建议用 Docker
看到 Shopify 在投入,Future of Developer Acceleration with Rails - Rails World ,感觉很酷
好酷 但是有种说英语前要脑子翻译一遍的感觉
感觉 LSP 的使用,让编辑器进化了
感谢分享《我编程,我快乐》中文版在省图书馆里发现了,很棒的角度
感谢分享!!!
在海面上铺设一条长道,固定一个自行车支架,体验青雉在大海上骑行的感觉
好的,感谢
已添加,感谢
重启了下
不太明白
感谢感谢
感谢提醒
受教了
我把文档所有的事件都试了一遍 ,还是得去 issues 里面找答案
我目前找到两个有效的解决办法(但实际只是换了种方式执行,并没有解决我提到的根本问题):
1 . Hotwire Discussion 中提到的:
add a Stimulus data-controller attribute to the element you render inside the element. Then implement the connect() method on that controller to know when the element has been loaded into the document.
通过在被渲染的 frame 上加入 Stimulus,通过 connect() 触发函数,执行想要的操作
2 . Github Issue
document.addEventListener("turbo:before-stream-render", function (event) {
event.preventDefault();
event.detail.newStream.performAction();
console.log("执行你想要的操作") (这个解决方式稍微能好点儿)
});
Youtube
中文字幕翻译的很清楚
感谢提醒