添加jquery以响应入门套件

时间:2016-05-18 08:51:48

标签: javascript jquery reactjs webpack react-starter-kit

我是Javascript世界的新手,并开始创建一个简单的React项目 我开始使用React Starter Kit并添加了我的第一个模块,这是一个简单的上传文件:

UploadFile。

import React, { Component, PropTypes } from 'react';
import FormData from 'form-data';
import $ from 'jquery';

class UploadPanel extends Component {
  state = {
    file:'',
  };
  uploadSelectedFile() {

    // Add the uploaded image content to the form data collection
    var data = new FormData();
    data.append("image", this.state.file);
    data.append("temp", 'temp');
    $.ajax({
      method: "POST",
      url: "rest/dicom/upload",
      xhr: function () {  // Custom XMLHttpRequest
        var myXhr = $.ajaxSettings.xhr();
        return myXhr;
      },
      cache: false,
      data: data,
      contentType: false,
      processData: false,
      success: function (data) {
        alert('file sent');
        console.log(data);
      },
      error: function (data) {
        alert('error');
        console.log(data);
      }
    });
  }
  handleFileChange(e){
    let file = e.target.files;
    if(file.length>0)
      this.setState({file: file});
    else
      this.setState({file: ''});
  }

  render() {
    //return <p> hi this is a test </p>
    //var createItem = function (item) {
    //  return <li key={item.id}>{item.text}</li>;
    //};

    return <form onSubmit={this.uploadSelectedFile()}>
      <input type="file" name="image" id="image" value={this.state.file} onChange={this.handleFileChange}/>
      <input type="submit" value="ارسال"  disabled={this.state.file!=''}/>
    </form>;
  }
}


export default UploadPanel;

但是当我打开页面时,编译(在服务器中)会出现以下错误:

TypeError: _jquery2.default.ajax is not a function
at UploadPanel.uploadSelectedFile (D:\Projects\Behyaar\BOIS\ReactDashboardClient\build\webpack:\src\components\bois\UploadDicom\UploadPanel.js:24:7)
at UploadPanel.render (D:\Projects\Behyaar\BOIS\ReactDashboardClient\build\webpack:\src\components\bois\UploadDicom\UploadPanel.js:59:33)
at ReactCompositeComponentMixin._renderValidatedComponentWithoutOwnerOrContext (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactCompositeComponent.js:587:34)
at ReactCompositeComponentMixin._renderValidatedComponent (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactCompositeComponent.js:607:32)
at wrapper [as _renderValidatedComponent] (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactPerf.js:66:21)
at ReactCompositeComponentMixin.mountComponent (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactCompositeComponent.js:220:30)
at wrapper [as mountComponent] (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactPerf.js:66:21)
at Object.ReactReconciler.mountComponent (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactReconciler.js:37:35)
at ReactDOMComponent.ReactMultiChild.Mixin.mountChildren (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactMultiChild.js:241:44)
at ReactDOMComponent.Mixin._createContentMarkup (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactDOMComponent.js:591:32)
at ReactDOMComponent.Mixin.mountComponent (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactDOMComponent.js:479:29)
at Object.ReactReconciler.mountComponent (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactReconciler.js:37:35)
at ReactCompositeComponentMixin.mountComponent (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactCompositeComponent.js:225:34)
at wrapper [as mountComponent] (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactPerf.js:66:21)
at Object.ReactReconciler.mountComponent (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactReconciler.js:37:35)
at ReactDOMComponent.ReactMultiChild.Mixin.mountChildren (D:\Projects\Behyaar\BOIS\ReactDashboardClient\node_modules\react\lib\ReactMultiChild.js:241:44)

任何人都可以帮忙吗? 为什么它想在服务器中运行客户端代码?

1 个答案:

答案 0 :(得分:2)

在您的render函数中,您在语法方面犯了一个小错误(我认为在React中开始捕获所有人,特别是如果他们来自其他框架) 。看看这一行:

return <form onSubmit={this.uploadSelectedFile()}> ... </form>

你的函数名末尾有括号 - 换句话说,每次运行render函数时都会调用该函数,包括在服务器上!

演示的最佳方式是将JSX转换为实际运行的JavaScript:

return React.createElement("form", { onSubmit: this.uploadSelectedFile() });

您将onSubmit属性设置为this.uploadSelectedFile返回值,而不是函数本身。

您需要解决两件事 - 首先,从前面提到的声明的末尾删除括号。第二件事情有点不太明显 - 因为您正在使用ES6课程,you need to be explicit about binding your functions to the correct this value

class UploadPanel extends Component {
    ...
    constructor() {
        super();
        this.uploadSelectedFile = this.uploadSelectedFile.bind(this);
        this.handleFileChange = this.handleFileChange.bind(this);
    }
    ...
}

There's also more elegant ways of doing this with arrow functions if you're using the stage-0 Babel preset.

希望能为你解决一些问题!