Results 2 issues of qi.futao

![1](https://user-images.githubusercontent.com/15138753/57213413-51c6ff00-7019-11e9-87ec-0e29d1802238.png) 在windows平台下执行npm run dev会报错,看了下.umi下的umi.js文件: ![2](https://user-images.githubusercontent.com/15138753/57213488-8f2b8c80-7019-11e9-960b-8b3180c59458.png) 生成的路径不能识别,应该是node中处理windows和linux的路径分隔符不同导致的。 暂时先将umi-plugin-entry.js插件里面的 `api.modifyEntryRender(memo => { memo = `const rootContainer = window.g_plugins.apply('rootContainer', { initialValue: React.createElement(require('${join(__dirname, "./redux/index")}').default, null, React.createElement(require('./router').default),), });` 替换成了相对路径: `api.modifyEntryRender(memo => { memo = `const...

Canvas的API中提供了直接绘制椭圆弧的方法,比如可以通过如下方式绘制一个椭圆弧: ```javascript ellipse(x, y, radiusX, radiusY, rotation, startAngle, endAngle, counterclockwise) ``` 请问在zrender中如何绘制原生Canvas中的ellipse椭圆弧呢?求大佬告知,感激不尽,谢谢!