这是我第一次使用react native和django。我在连接它们时遇到问题。
这是我目前所拥有的。我不确定在json_uploadfunc函数中要写什么,以便它将值,标头,描述,优先级,持续时间,到期时间,所有者输入django。
在哪里可以获得更多信息,我应该写什么到json_uploadfunc?
export default class TaskClass extends React.Component {
constructor(props){
super(props);
this.state = {
header: 'TestClassTask',
description: '',
priority: null,
duration: null,
due: null,
owner: 'URL'
}
};
json_funtion = () => {
fetch('https://google.com')
.then(response => response.json())
.then(data => {
var json_array = data[0]; //get the first obj from django
var id = json_array.id.toString(); //get the id
var url = json_array.url; //get url
var header = json_array.header; //get header
var priority = json_array.priority.toString(); //get priority
var duration = json_array.duration.toString(); //get duration
var due = json_array.due.toString(); //get duedate
var owner = json_array.owner; //get owner
})
.catch(error => console.log(error));
}
json_uploadfun = () => {
URLpath = https://url
}
}