我想将存储的redux值传递给网页,并显示它。但是我总是得到这样的错误
The previous state received by the reducer has unexpected type of "Function". Expected argument to be an object with the following keys: "session", "user", "form"
warning @ bundle.js:21260
combination @ bundle.js:21220
createStore @
我的主要档案是贝娄:
<?php
/*
Plugin Name: XYZ
*/
class GMS_SMS_Notifier {
public function __construct(){
if (is_admin()){
//JS
add_action( 'admin_enqueue_scripts',array($this,'load_custom_js_scripts'));
}
}
function load_custom_js_scripts() {
wp_register_scr
我是Redux的新手,老实说,我发现它很难使用,而且根本不直观。我想要完成的只是将数据从应用程序中的一个文件加载到视图中,这样就可以让还原器和操作正常工作。我在projects_reducer.js文件中有一个开关语句,一个动作index.js,一个projects.js视图,以及一个还原器index.js。我已将其注销,而且开关语句似乎每次都跳过Fetch_Projects操作,并进入默认状态,因为action.type没有正确注册。我不知道这是为什么。任何帮助都是非常感谢的。我的代码包括在下面。
//actions index.js file, only top two actions a
我猜你可以认为这是我之前的延续。基本上,我呈现的是一个ajax partial,它允许js.erb功能喜欢/不喜欢餐馆的菜肴。我有四个操作来呈现这个部分:
class DishesController < ApplicationController
def like
@dish.liked_by current_user
respond_to do |format|
format.js { render partial: "dishes/shared/vote.js.erb" }
end
end
def unlike
我正在尝试让我的redux与一个新的表单功能一起工作,当我试图显示我的主页时,我现在得到了这个错误信息。index.reducer文件最初包含我用于身份验证的教程中的身份验证和消息缩减器,以前工作得很好,所以我没有包含它们的缩减器。
在configureStore index.reducer文件中使用5个reducers是正确的,还是必须放入一个combineReducer函数?
错误消息
Error: Expected the reducer to be a function.
index.reducer.js
export default configureStore({
// c
我有一个表格中的按钮:
<button id="save" type="submit" formaction="@Url.Action("SaveEvent")" formmethod="post">Save</button>
它发布到此控制器:
public async Task<ActionResult> SaveEventAsync(EventDataModel vm)
{
// save to db etc...
TempData["Saved
我一直试图得到一个看似简单的例子,但一直未能使用MobX、React、TypeScript和actions。没有严格,一切正常,但我宁愿使用严格的模式。
我得到的错误是:
Uncaught Error: [mobx] Since strict-mode is enabled, changing observed observable values outside actions is not allowed. Please wrap the code in an `action` if this change is intended. Tried to modify: AppState@1.t