$(function() { });
我的代码有什么问题?为什么我在卡片视图上出现这样的错误,这是第71行。我仍然找不到解决方案,而我实现与教程相同。 请尽可能帮助。我添加了一些属性,一遍又一遍地删除了some.no影响和相同的错误
答案 0 :(得分:1)
在React-native中,您需要在gradle.build中强制使用相同版本的appcompat,
configurations.all {
resolutionStrategy {
force 'com.android.support:appcompat-v7:23.4.0'
}
}
答案 1 :(得分:0)
您是否在模块的module.exports = {
entry: './app/index.jsx',
output: {
path: './dist',
filename: 'bundle.js', //this is the default name, so you can skip it
//at this directory our bundle file will be available
//make sure port 8090 is used when launching webpack-dev-server
publicPath: 'http://localhost:8090/assets'
},
module: {
loaders: [
{
//tell webpack to use jsx-loader for all *.jsx files
test: /\.jsx$/,
loader: 'jsx-loader?insertPragma=React.DOM&harmony'
}
]
},
externals: {
//don't bundle the 'react' npm package with our bundle.js
//but get it from a global 'React' variable
'react': 'React',
'd3': 'd3'
},
resolve: {
modulesDirectories: ['app', 'node_modules'],
extensions: ['', '.js', '.jsx']
}
}
文件中添加了CardView依赖项?确保你拥有它,因为它与你忘记包含它时的异常相同。
build.gradle