我有一个MERN堆栈项目。问题是Edit.js路由回主页,但Create.js文件没有。没有错误消息,它只会将页面重新加载到空状态,并且不会路由回主页。包括App.js,Edit.js,Create.js
App.js:
“”“
import React from "react";
// We use Route in order to define the different routes of our application
import { Route } from "react-router-dom";
// We import all the co
我有一些函数,我想将它们保存在一个外部js文件中。例如:
在functions.js中
var double = function(x) {
return x + x;
}
export { double };
然后在我的主js文件中:
import double from './functions';
...
double(2)
我知道这个错误:
Uncaught TypeError: (0 , c.default) is not a function
at bundle.min.js:44
当我读到第44行时:
(0, _functions2.defaul
我试图为另一个这样的问题创建一个演示,首先用角键,然后用朋克。
我在两个版本的import中遇到了一个奇怪的行为差异。
问题出现在以下代码的第二个import中:
moment.service.ts
import { Injectable } from '@angular/core';
// Following work in plunker setup
import m from 'moment';
// Following work in angular-cli setup
//import * as m from 'moment';
@
我在打字稿上是个无名小卒。有人能向我解释一下这些出口之间的区别吗?
export default class Foo {}
/* or */
class Foo {}
export = Foo;
/* or */
export class Foo { }
以及这些进口形式之间的区别:
import x = require('y');
import x from 'y';
import { x } from 'y'
import * as x from 'y';
什么时候使用每一种?
我正在导入一个组件到我的react本地应用程序,即使在尝试了我已经在网上找到的解决方案之后,我仍然会得到相同的错误,所以我可能是个初学者,所以我错过了一些显而易见的东西
我试着用大括号包装我的导入名,但它似乎没有帮助
my main app.js
import React from 'react';
import { StyleSheet, View, Header, } from 'react-native';
import { NumberInput } from './src/components/NumberInput
我遇到了一个出口场景的小问题,我不知道为什么。我可能需要一个Babel插件来解决它,但不确定是哪个。
// a.js
export function fromA() {}
// b.js
export function fromB() {}
// index.js
import * as a from './a'
import * as b from './b'
export default { ...a, ...b}
// test.js
import all from './index'
const { fromA } = all
两样似乎都能用。下面列出的两个e1都是EventEmitter,可以这样使用。
import { EventEmitter } from "events";
let e1 = new EventEmitter();
import events from "events";
let e1 = new events();
我在谷歌上搜索没有找到答案。我还研究了节点文档,发现差异从节点4.x开始( 0.12.x,仍然是import from Events.EventEmitter)。
有人能帮我解释一下这里有什么区别吗?
我正在开发一个货币转换应用程序,我从代码笔()那里得到了代码。我正在尝试运行此代码,并收到此错误:./src/index.js尝试导入错误:'App‘不是从'./App’导出的。
我已经尝试在index.js和App.js文件上添加导出默认应用程序();,但不起作用。
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import {App} from './App';
import * as ser
你好,StackExchange社区。
我刚开始反应,在调用从另一个文件导出的函数时遇到了一些困难:
当我试图从表单调用此函数时,我会收到以下错误:
Attempted import error: 'PrivateRoute' is not exported from '../components/PrivateRoute'.
构成部分:
import React from "react";
import { Route, Redirect } from "react-router-dom";
function PrivateR