-
All the js under webpack is the generated js instead of jsx when debug with chrome developer tool.
It works after modify devtool of webpack.config.js from
webpackConfig.devtool = '#eval'
to
webp…
-
dora 比mockjs 的方式要优雅很多,但是现在vue2.0. angular2.0的我不知道怎么集成进去,也没有示例代码
-
model/funnel.js
```
import { query } from '../services/funnel';
export default {
namespace: 'funnel',
state: {
funnelList: [],
dimension: [],
chart: [],
…
-
我按照你博客里写的步骤配置rap
1.配置config.js
rapFlag设为true,rapHost配置为rap网站上的请求根路径,跟示例只有后面数字的不同
2.配置query.js
代码和你github仓库里的一样
3.运行`dva g model funnel`
信息如下
```
/usr/local/lib/node_modules/dva-cli/bin/dva-gen…
-
Hi,
在使用dva的过程中,参照user-model的demo。遇到一个问题,
怎么替换mockjs,请求服务器数据?
-
请看看,某位客户的JSON,通过RAP生成了模板后,在Mock.mock时报错。
``` javascript
{
"extra": {
"page": 1,
"pagesize": 20,
"totalpage": 1,
"total": 10
},
"message": "\u64cd\u4f5c\u62…
-
使用proxy报错了;
proxy: proxy.config.js parse error
-
![image](https://cloud.githubusercontent.com/assets/35128/14662347/ce437188-06e7-11e6-84be-8ddb8bf3132e.png)
-
```bash
Child
Time: 693ms
Asset Size Chunks Chunk Names
common.js 191 bytes 0 common
ERROR in ./src/index.js
Module build failed: Referenc…
-
我的项目中使用了webpack 打包,其中所有js 通过 babel loader, 通过Mock 返回的数据,我使用 `JSON.parse(data)`
拦截器是生效了,但`'work|3': [id: 99]` 等无法生效。
`console.log(data)` 出来的是 `'work|1': [{id: 99}]`,而不是 `work: [{id: 99}, {id: 99}, {id:…