«fetch» 태그된 질문

10
자식에서 가져 오기가 모든 분기를 얻지는 않습니다.
리포지토리를 복제 한 후 다른 누군가가 새 브랜치를 만들었습니다.이 브랜치는 작업을 시작하고 싶습니다. 나는 매뉴얼을 읽었고, 쉽게 죽는 것처럼 보인다. 이상하게도 작동하지 않으며 내가 찾은 모든 게시물은 내가 옳은 일을하고 있다고 제안합니다. 나는 몹시 때리는에 자신을 복종거야 그래서, 때문에이 있어야 이와 분명히 뭔가 잘못 될 : 올바른 조치는 것 로 …
201 git  fetch  branch  git-fetch 


7
ReadableStream 객체에서 데이터를 검색 하시겠습니까?
ReadableStream객체 로부터 정보를 얻으려면 어떻게 해야합니까? Fetch API를 사용 중이며 설명서에서 명확하지 않은 것으로 보입니다. 본문이로 반환되고 있으며이 ReadableStream스트림 내의 속성에 간단히 액세스하고 싶습니다. 브라우저 개발 도구의 응답 에서이 정보가 JavaScript 객체의 형태로 속성으로 구성되어있는 것으로 보입니다. fetch('http://192.168.5.6:2000/api/car', obj) .then((res) => { if(res.status == 200) { console.log("Success :" + res.statusText); …

2
페치를 사용하여 멀티 파트 양식 데이터로 POST하려면 어떻게합니까?
다음과 같은 URL을 가져옵니다. fetch(url, { mode: 'no-cors', method: method || null, headers: { 'Accept': 'application/json, application/xml, text/plain, text/html, *.*', 'Content-Type': 'multipart/form-data' }, body: JSON.stringify(data) || null, }).then(function(response) { console.log(response.status) console.log("response"); console.log(response) }) 내 API는 데이터가 될 것으로 예상 하므로이 유형을 multipart/form-data사용 content-type하고 있지만 상태 코드 400으로 응답을 제공합니다. 내 …

2
쿼리가 조인 가져 오기를 지정했지만 가져온 연결의 소유자가 선택 목록에 없습니다.
두 개의 ID 열을 선택했지만 오류가 지정되었습니다. org.hibernate.QueryException: **query specified join fetching, but the owner of the fetched association was not present in the select list** [FromElement{explicit,not a collection join,fetch join,fetch non-lazy properties,classAlias=r,role=null,tableName=REVISIONS,tableAlias=revision1_,origin=ENTITY_CHANGED_IN_REVISION entitychan0_,columns={entitychan0_.REV_ID ,className=ru.csbi.registry.domain.envers.Revision}}] [ select ec.id as entityChangeId, r.id as revisionId from ru.csbi.registry.domain.envers.EntityChange as ec inner join fetch …
82 hibernate  join  fetch 
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.