Lichmaker

Results 11 comments of Lichmaker

session id是自动生成的,不是必填项。 你是在laravel中运行的吗? `Too few arguments to function Illuminate\Redis\RedisManager::__construct()` 可以看出是版本问题导致的

可以参考一下这个issues,一样的问题https://github.com/Hanson/vbot/issues/266

I have the same issue with my corporate proxy. ``` ➜ ~ dapr version CLI version: 1.8.1 Runtime version: n/a ➜ ~ dapr init ⌛ Making the jump to hyperspace......

> I think this [PR](https://github.com/dapr/cli/pull/994) broke `dapr init` via proxy. > > The above PR replaced the default `net/http` client with an explicit client, but the explicit client doesn't setup...

https://pkg.go.dev/net/http#ProxyFromEnvironment http.ProxyFromEnvironment can fix this issue. And it's worked successfully in my corporate network with proxy. So I send this [PR](https://github.com/dapr/cli/pull/1048). Please check it. 😄

@pravinpushkar Glad to do it. Please check it. 😃 https://github.com/dapr/cli/pull/1049

> @Lichmaker Can you please create a docs PR on how to use this ? Potentially add it in this page? https://docs.dapr.io/operations/troubleshooting/common_issues/ cc @greenie-msft WDYT? OK 😃 I'll try

作者您好,又来向您请教了。 在 `Reative State` 章节中,描述了一种状态共享库的使用,通过一个组件来统一管理状态。 我这里有一个疑惑, import 一个组件时,组件是单例还是多例的呢? 从这一章节看来是单例的,因为 `Father.vue` 和 `Child.vue` 引入了 `state` 之后,都能共同访问和修改 `state` 中的响应式变量。 如果我一个应用中,需要多次重复引用一个组件,怎么可以做到相互隔离呢?

首先很感谢作者的付出,我目前主业是后端开发,业余期间学习前端知识,在这里收获良多。给猫猫发了个罐头红包,小小心意。 为什么会选择在这里留言,是因为遇到问题了。在初始化项目时: ``` ➜ preset init hello-vue3 --template vue3-ts-vite ✔ Get the latest config successfully. ✖ Operation cancelled node:internal/readline/emitKeypressEvents:71 throw err; ^ TypeError: Cannot read properties of undefined (reading 'disabled')...

@chengpeiquan 感谢回复 😄 . 我今天在家试了一下,能正常使用了。 我之前是在公司使用,因为我们公司的网络环境是需要使用代理上网的,例如 ``` export http_proxy=http://x.x.x.x:1087 export https_proxy=http://x.x.x.x:1087 ``` 所以如果 `preset ` 会到 github 上下载内容,很大概率我会下载不到 🤣 , 公司网太烂了。