Hanxing Yang

Results 119 comments of Hanxing Yang

据(老许)说 *.org 目前国内无法备案

域名备案已 @陈文杰 跟进

@陈文杰 反馈,`*.dev` 也无法在国内备案

With #170: https://builder.goplus.org TODOs after #170: - [x] Update env config with online API server address - [x] Update env config with online Casdoor information - [x] API Proxy (#414)...

* 版本信息相关的逻辑(如何记录、如何维护等)可能也要放进来 * “后端角色”存储的、以及通过接口读、写的不只是“文件结构”,应该还包括别的项目信息?虽然“文件结构”是这个方案中比较重要的部分,但是说只有它是不准确的 * 具体的接口细节(比如 method 是否 GET、body 是否 JSON 格式),不用体现在这个文档中;你可以说“前端调用后端的 xx 接口获得 xx 信息”,然后在后续的接口文档中对“xx 接口”的具体规格进行说明即可 * “文件结构”在保存到数据库时会 JSON 序列化(marshal)为字符串,这个事情是服务端自己的逻辑(mysql 的限制带来的),应该由服务端在读出后自己做一次反序列化(unmarshal)再给前端,而不应该要求前端去做一次额外的 JSON 反序列化 即,在服务端跟前端之间的文件结构应该是一个字典(Javascript 的 object、Golang 的 Map),而不是一个字符串;字符串是服务端逻辑跟 DB...

@abiari I made a PR (#710) to fix this. > When you set this header, the devtools floating panel(embedded in the page as an iframe) will be refused to load...

This is especially important when we offering multiple types of widgets.

And dropdown menu style, expected: ![Image](https://github.com/user-attachments/assets/fc039172-e5a3-4b85-b85e-c80b217f072e)

### 1. About 1st `var` block It is by design of Go+ classfile: only the first `var` block will be transformed to fields of result class (struct). The following `var`...

Related: goplus/spx#316