一个很简单的ajax例子代码如下:
index.js:
import React from 'react';
import ReactDOM from 'react-dom';
var ajaxdemo = require('./AjaxDemo.js');
ajaxdemo.AjaxDemo();
AjaxDemo.js:
index.html:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<link rel="manifest" href="../manifest.json">
<link rel="shortcut icon" href="../favicon.ico">
<title>React App</title>
</head>
<body>
<div id="ajaxdemo"></div>
</body>
</html>
相关分类