mobx-lesson-20170122 icon indicating copy to clipboard operation
mobx-lesson-20170122 copied to clipboard

Results 3 mobx-lesson-20170122 issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/7744078/28248742-4640be68-6a7c-11e7-8972-41b9a4b839c8.png)

`/** * Created by cloudesafe on 2017/4/13. */ import React, { Component } from 'react'; import { StyleSheet, Text, View, ListView, RefreshControl } from 'react-native'; import { observer } from...

在mobx中若在@action是箭头函数就报错,但我看mobx说是action支持剪头函数的。报错如下:Cannot read property 'length' of undefined 出错代码为项目文件夹下node_modules/react-proxy/modules/deleteUnknownAutoBindMethods.js 第38行prototypeDescriptor.get()为undefined,所以.length就出错了,如下: ```js function shouldDeleteModernInstanceMethod(component, name) { var prototype = component.constructor.prototype; var prototypeDescriptor = Object.getOwnPropertyDescriptor(prototype, name); if (!prototypeDescriptor || !prototypeDescriptor.get) { // This is...