在Mac OS中找不到react-native命令

时间:2019-05-27 11:03:33

标签: react-native-android

我已经尝试了所有方法,但是仍然无法在 mac os

中创建react native应用

我已经重新安装了每一步。

    $(document).ready(function() {
        // Handle form submission event
        $('#myForm').on('submit', function(e){
            var table = $('#formFieldsDataTable').DataTable();
            var form = this;

            // Iterate over all elements in the table
            var params = table.$('input, select').serializeArray();
            $.each(params, function(){
                // If element doesn't exist in DOM
                if(!$.contains(document, form[this.name])){
                    // Create a hidden element
                    $(form).append(
                        $('<input>')
                            .attr('type', 'hidden')
                            .attr('name', this.name)
                            .val(this.value)
                    );
                }
            });
        });

    });
  

-bash:未找到react-native命令

我希望应该创建该应用,但命令根本不起作用

1 个答案:

答案 0 :(得分:0)

安装React native全局

npm i react-native-cli -g