- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试进行第一个中继查询。我执行了 npm run relay
和 npm run build
。一切正常,但在控制台中出现错误:
有谁知道可能导致此错误的原因吗?
更新。
Table.js (component where I want make query)
import React, { Component } from 'react';
import { graphql, QueryRenderer } from 'react-relay';
const environment = import('../../environment.js');
class Table extends Component {
render() {
return (
<QueryRenderer
environment={environment}
query={graphql`
query TableQuery {
users {
data {
name
}
}
}
`}
render={({error, props}) => {
return <div>User: 1</div>;
}}
/>
);
}
}
export default Table;
environment.js (relay config)
import {
Environment,
Network,
RecordSource,
Store,
} from 'relay-runtime';
function fetchQuery(
operation,
variables,
) {
return fetch('/graphql', {
method: 'POST',
headers: {
'content-type': 'application/json'
},
body: JSON.stringify({
query: operation.text,
variables,
}),
}).then(response => {
return response.json();
});
}
const network = Network.create(fetchQuery);
const store = new Store(new RecordSource());
const environment = new Environment({
network,
store
});
export default environment;
一切都来自文档设置页面。
最佳答案
在 Table.js
中,您似乎混淆了导入的语法:
const environment = import('../../environment.js'); // Wrong
const environment = require('../../environment.js'); // OK
import environment from '../../environment.js'; // OK
使用 import('../../environment.js')
使其成为一个动态导入,它返回一个 Promise(取决于您的 bundler 配置)并且不太可能是您想要的。
关于javascript - 无法读取未定义的属性 'getRequest' - 继电器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55091231/
我的代码: @RunWith(Parameterized.class)
我正在创建一个 magento 自定义管理模块和一个表单。我想更新此表格但不更新。在 Controller 中,在 SaveAction() 下我打印 $this->getRequest()->get
我们正在 Symfony2 上开发两个独立的站点,并且在处理提交的表单时遇到了一个奇怪的问题。 两个站点都有一个用于显示表单和处理提交的操作。因为它同时处理 GET 和 POST 请求,$this->
我正在尝试进行第一个中继查询。我执行了 npm run relay 和 npm run build。一切正常,但在控制台中出现错误: 有谁知道可能导致此错误的原因吗? 更新。 Table.js (co
我见过两种在 Controller 中获取 Request 对象的方法: $request = Request::createFromGlobals(); $request = $this->getR
我将从 ServletActionContext 中删除一些属性,但稍后当我迭代 ServletActionContext 时,属性会继续显示。 ServletActionContext.getReq
在我的代码中,我想在 SugarCRM REST API V10 上启动 GET 请求,对于过滤器,我必须向请求添加一些参数 应该是什么: https://domain/rest/v10/Accoun
我见过两种在 Controller 中获取 Request 对象的方法: $request = Request::createFromGlobals(); $request = $this->getR
作为 this 的延续问题,我在使用 dotnetopenauth 时遇到了问题。 我导航到我的信赖方代码并创建请求,但是当我的提供者收到请求时 OpenIdProvider.GetRequest()
这个问题已经有答案了: How can I access and process nested objects, arrays, or JSON? (31 个回答) 已关闭 9 年前。 嗨,我有一个以
下面是我用来测试的代码: 我们正在做的是使用 getPageContext().getRequest().getParameterMap(
最近我浏览了 symfony2 api 文档,这是我在 Request 的文档中找到的 get方法: Avoid using this method in controllers: slow pref
我想为Graphql创建RolesGuard 我创建如下的角色装饰器 export const Roles = (...roles: string[]) => SetMetadata('roles',
我正在努力从 url 检索制造商属性 localhost/magento/index.php/test-pro.html?manufacturer/4 所以我使用了$this->getRequest(
我正在尝试使用 ReactiveElasticsearchClient 连接到我的 Elasticsearch 。 根据文档 https://www.elastic.co/guide/en/elast
我正在处理最后一个开发人员创建了一个表单但没有使用“$form”的现有代码,代码是: public function indexAction() { ....... $objRequ
当尝试在 XPage ( as explained here ) 上获取 SSJS 中的 Session 时,前面的类型只会达到 getSession()。 我可以看到 getSession() 调用
在 Controller Action 中,我们可以通过两种方式获取请求对象: $request = $this->getRequest(); 或者将其作为参数传递给 Action public fu
我正在将 Authorization: Bearer { Token } 作为 HTTP 请求传递给我的 Symfony Rest Controller 。 我的要求: GET /app_dev.ph
我有一个问题。使用 GetRequest 我想要一个 SQL 查询,其中查询 2 个参数。Sql 查询是 从模板中选择*,其中 user_name=user_name AND template_id=
我是一名优秀的程序员,十分优秀!