match command.split():
case ["quit"]:
print("Goodbye!")
quit_game()
case ["look"]:
current_room.describe()
case ["get", obj]:
character.get(obj, current_room)
case ["go", direction]:
current_room = current_room.neighbor(direction)
# The rest of your commands go here
case _:
# default --> 의식적으로 넣어주는 것이 정신건강에 이롭다.
pass
아래와 같은데 이는 조금 문제가 있다. 확장으로 이미지를 디자인식으로 올린 경우 저장이 동일하게 되지 않는다.
// Get canvas information let canvas = document.getElementsByTagName("canvas"); if(canvas&&canvas.length>0){ // create label let tempA = document.createElement("a"); // Set download name tempA.download = "echarts download" +".png"; // Set address and file type tempA.href = canvas[0].toDataURL("image/png"); document.body.appendChild(tempA); // Trigger download event tempA.click(); // Remove Tag tempA.remove(); }
따라서 온전히 저장을 하기 위해서는 echat 내부 api를 사용해야 한다.
/**
* @param flNm 저장 파일명 확장자 포함
* @param chartObj 차트 오브젝트명
* @param pixelRt 저장 이미지 비율 default 1(1:1)
* @returns
*/
function downloadURI(flNm, chartObj, pixelRt = 1) {
var tempA = document.createElement("a");
tempA.download = flNm ;
//address 설정하고 파일의 타입 정하기
tempA.href = chartObj.getDataURL({
pixelRatio: pixelRt
});
document.body.appendChild(tempA);
//클릭 다운로드 이벤트
tempA.click();
//태그를 제거합니다
tempA.remove();
}