是否有类似猫鼬的前端库?

时间:2018-10-25 16:47:58

标签: reactjs frontend

我并不是说前端将直接与数据库联系。我只是希望有一个工具可以将高级db操作转换为低级http命令。然后,应用服务器可以相应地处理数据库服务器。

import React from 'react'
import X from 'X'
class Demo extends React.Component{
    constructor(){
        super();
        this.state={result:null}
        let schema=new X.Schema({title:String});
        this.model=X.model('blob',schema)
    }
    handleClick=()=>{
        this.model.create({titile:this.input.value}).then(()=>{
            this.setState({result:"new blog stored in the remote db successfully"})
        })
    }
    render(){
        return <div>
            <input ref=(input)=>{this.input=input} />
            <button onClick={this.handleClick}>submit</button>
            <div>{this.state.result}</div>
        </div>
    }
}

1 个答案:

答案 0 :(得分:0)

我不确定是否存在类似的内容,即使我不认为它会对网站构成巨大的安全威胁。

但是,有一些很好的工具可以创建模式,例如从后端对查询进行查询。 考虑使用GraphQLFirebase,当然还有其他工具和服务,但是我发现它们是最受欢迎的工具和服务,您会在网上找到很多有关如何使用它们的教程。做出反应(例如herehere