ajaxStop与成功:

时间:2019-05-27 14:34:58

标签: jquery ajax

在这种情况下会发生什么?

template<typename T>
struct Foo {
    T* data_;

    template<
        typename... Ts,
        std::enable_if_t<
            std::conjunction_v<
                std::is_same<T, std::decay_t<Ts>>...
            >
        > * = nullptr
    >
    explicit Foo( Ts&&... ts ) : data_{ } {}
 };

这将发生什么:

   $.ajax({
        url : someurl,
        type : 'get',
        data : {
        action : 'some_action',
        post_id : post_id
        },
        success : function( response ) {
        // Do something with response

    // Fire other ajax function

        }
        });

第二个ajax函数会同时启动吗?还是第一个会在应用成功功能的同时触发,而第二个只会在完成后触发?

0 个答案:

没有答案