Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

前端和后端各种一处问题 #11

Open
uouuou opened this issue Dec 17, 2020 · 7 comments
Open

前端和后端各种一处问题 #11

uouuou opened this issue Dec 17, 2020 · 7 comments

Comments

@uouuou
Copy link

uouuou commented Dec 17, 2020

前端:反馈意见删除接口应该是feedback-rm
后端:feedback-rm接口处理删除的方法和前端不一致,要么修改为Param接受方式则和前端一致,要么前端提交方式修改一下

@uouuou
Copy link
Author

uouuou commented Dec 17, 2020

另外在设置用户权限的时候,建议采用管道判断一下执行结果,并记录该结果,后续再修改权限的时候不要执行已经有结果的,否则有一些有错误的将会永远无法执行,同样的,这里面的问题还是在于有错误的情况下,权限赋予会卡住并最终执行失败。用户使用体验不好,也不能直观的知道问题

@uouuou
Copy link
Author

uouuou commented Dec 17, 2020

另外,虽然通过zip解压了您的前段页面,但是您也知道这个修改毕竟是不合适的,如果可以建议您新开一个分支将web部分也开源一下,万分感谢

@liusonfer
Copy link

另外,虽然是通过zip解压了您的前段页面,但您也知道这个修改是不合适的,如果可以建议您新开一个分支将网站部分也开源一下,万分感谢

好像你有前端代码么

请问你有前端代码么

@uouuou
Copy link
Author

uouuou commented Aug 19, 2021

另外,虽然是通过zip解压了您的前段页面,但您也知道这个修改是不合适的,如果可以建议您新开一个分支将网站部分也开源一下,万分感谢

好像你有前端代码么

请问你有前端代码么

通过ZIP解压可以直接解压出来的从代码里面

@uouuou
Copy link
Author

uouuou commented Aug 19, 2021

另外,虽然是通过zip解压了您的前段页面,但您也知道这个修改是不合适的,如果可以建议您新开一个分支将网站部分也开源一下,万分感谢

好像你有前端代码么

请问你有前端代码么

package felixbin

import (
"archive/zip"
"fmt"
"io"
"os"
"strings"
)

func UnzipStic() {
err := DeCompress("./static/")
if err != nil {
fmt.Println(err)
}
}
func DeCompress(dest string) error {
r, err := zip.NewReader(strings.NewReader(zipData), int64(len(zipData)))
if err != nil {
fmt.Println(err)
return nil
}
for _, file := range r.File {
rc, err := file.Open()
if err != nil {
return err
}
defer rc.Close()
filename := dest + file.Name
//err = os.MkdirAll(getDir(filename), 0755)
//if err != nil {
// return err
//}
w, err := os.Create(filename)
if err != nil {
return err
}
defer w.Close()
_, err = io.Copy(w, rc)
if err != nil {
return err
}
w.Close()
rc.Close()
}
return nil
}

@mojocn
Copy link
Owner

mojocn commented Aug 20, 2021

另外,虽然通过zip解压了您的前段页面,但是您也知道这个修改毕竟是不合适的,如果可以建议您新开一个分支将web部分也开源一下,万分感谢

前端代码高丢了. 类似的前端代码 https://github.com/mojocn/felixfe

@uouuou
Copy link
Author

uouuou commented Aug 20, 2021

另外,虽然通过zip解压了您的前段页面,但是您也知道这个修改毕竟是不合适的,如果可以建议您新开一个分支将web部分也开源一下,万分感谢

前端代码高丢了. 类似的前端代码 https://github.com/mojocn/felixfe

感谢感谢

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants