Как добавить префикс sparql в axios.get () - PullRequest
0 голосов
/ 03 апреля 2019

Когда я не добавляю префикс, все нормально, но я добавляю префикс, ошибка в консоли говорит:

400 (Parse error: ? PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns??Encountered " "<" "< "" at line 1, column 19.??Was expecting:??

Это мой код в Vue js:

methods:{
getUrl(){
  axios.get(`
  http://localhost:3030/demo/sparql?format=json&query=
  PREFIX    rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>
    SELECT *   
    WHERE {
            ?s ?p ?o
    } LIMIT 10 `).then((response) =>{
      this.loading = false;
      const result = response.data.results.bindings;
      this.data = result;
      console.log(result)
    })
}

А вот и ошибка в консоли:

xhr.js?b50d:178 GET http://localhost:3030/demo/sparql?format=json&query=%20%20%20%20%20%20PREFIX%20rdf:%20%3Chttp://www.w3.org/1999/02/22-rdf-syntax-ns 400 (Parse error: ? PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns??Encountered " "<" "< "" at line 1, column 19.??Was expecting:?? <IRIref> ...??)

Error in Console

...