web(4)
-
go 언어로 web server 만들기 1 (고 언어 웹 서버)
고 언어로 웹 서버 만들기 시작 고 언어를 통해 간단히 web server를 만다는 법에 대해서 설명해 드리겠습니다. 우선 HTTP protocol 처리를 위해 "net/http"를 먼저 import 합니다. 또한 log 출력을 위해 fmt과 log도 import 합니다. import ( "net/http" "fmt" "log" )이후 다음과 같이 main 함수를 작성합니다. func handleRoot(res_writer http.ResponseWriter, req *http.Request) { fmt.Fprintf(res_writer, "welcome here %s!", r.URL.Path[1:]) } func main() { http.HandleFunc("/", handleRoot) res := h..
2021.12.30 -
Update values of the Flask forms in JavaScript section
document.getElementById('first name').value = json_obj.first_name document.getElementById('last name').value = json_obj.last_name simply get DOM object by calling document.getElementById, and the update its value with what you want to update. the example code are here
2021.09.02 -
JavaScript "Failed to find a valid digest in the 'integrity' attribute ..."
보호되어 있는 글입니다.
2021.08.13 -
JavaScript: Uncaught TypeError: $.ajax is not a function
jQuery가 수행되지 않는 경우, $.ajax(....)가 수행되지 않았다. 이에 chrome browser 상에서 F12 -> console로 들어가 log를 확인해보니, 다음과 같이 $.ajax를 찾지 못하는 에러가 발생하고 있었다. Uncaught TypeError: $.ajax is not a function 이는 jQuery 사용 시 slim build에서는 $.ajax가 정의되어 있지 않기 때문이다. 이에 slim을 빼보았다. https://code.jquery.com/jquery-3.5.1.slim.min.js" -> https://code.jquery.com/jquery-3.5.1.min.js" 이후 $ajax는 수행되는 것을 확인하였다.
2021.08.13